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 10792a168d
commit 5d9eb581b8
2 changed files with 6 additions and 0 deletions

View file

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

View file

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