Cleanup for Spanish dict building: die when can't build correctly, and

do same for WINCE as for FRANK re: specials
This commit is contained in:
ehouse 2006-04-30 04:27:33 +00:00
parent 834c43e131
commit 8124a01010
2 changed files with 6 additions and 0 deletions

View file

@ -24,6 +24,10 @@ PBITMS = ./bmps/palm
else
ifeq ($(TARGET_TYPE),FRANK)
PBITMS = ./bmps/franklin
else
ifeq ($(TARGET_TYPE),WINCE)
PBITMS = ./bmps/franklin
endif
endif
endif

View file

@ -38,7 +38,9 @@ sub doOne {
print STDERR "looking at $largebmp", "\n";
die "file $largebmp does not exist\n" unless -e $largebmp;
print `cat $largebmp | ../pbitm2bin.pl`;
die "file $smallbmp does not exist\n" unless -e $smallbmp;
print `cat $smallbmp | ../pbitm2bin.pl`;
}