mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-15 15:41:24 +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
10792a168d
commit
5d9eb581b8
2 changed files with 6 additions and 0 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue