From 2f9737ed0a444ea94c91678b301d8b29936b699a Mon Sep 17 00:00:00 2001 From: Eric House Date: Fri, 11 Dec 2020 12:46:19 -0800 Subject: [PATCH] fix to build wordlist from current sources I'd lost the old source, so uncompressed a current list to recreate. --- xwords4/dawg/English/Makefile.TWL06 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xwords4/dawg/English/Makefile.TWL06 b/xwords4/dawg/English/Makefile.TWL06 index 937e8357d..c2eb0f71c 100644 --- a/xwords4/dawg/English/Makefile.TWL06 +++ b/xwords4/dawg/English/Makefile.TWL06 @@ -22,11 +22,11 @@ TARGET_TYPE=WINCE include ../Makefile.langcommon -# from http://www.3zsoftware.com/en/wordmagic/lists.php -SOURCEDICT ?= $(XWDICTPATH)/English/twl06.zip +DICTNOTE = "from http://www.3zsoftware.com/en/wordmagic/lists.php" +SOURCEDICT ?= $(XWDICTPATH)/English/TWL06.txt $(XWLANG)Main.dict.gz: $(SOURCEDICT) Makefile - zcat $< | grep -e "^[A-Z]\{2,15\}$$" | gzip -c > $@ + cat $< | grep -e "^[A-Z]\{2,15\}$$" | gzip -c > $@ # Everything but creating of the Main.dict file is inherited from the # "parent" Makefile.langcommon in the parent directory.