mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-11-16 07:48:07 +01:00
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:
parent
834c43e131
commit
8124a01010
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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`;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue