From f7374f54c53595d4674432524b710445203517cf Mon Sep 17 00:00:00 2001 From: Eric House Date: Thu, 30 Apr 2020 13:06:01 -0700 Subject: [PATCH] fix Spanish support for lowercase "special" casing is specified in two places, and I forgot to modify the second one when I added allowing lowercase alternative spellings --- xwords4/dawg/Spanish/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/xwords4/dawg/Spanish/Makefile b/xwords4/dawg/Spanish/Makefile index dea3afe5a..0a2f4ed36 100644 --- a/xwords4/dawg/Spanish/Makefile +++ b/xwords4/dawg/Spanish/Makefile @@ -33,19 +33,19 @@ endif endif LANG_SPECIAL_INFO = \ - "CH" $(PBITMS)/large_ch.pbitm $(PBITMS)/small_ch.pbitm \ - "LL" $(PBITMS)/large_ll.pbitm $(PBITMS)/small_ll.pbitm \ - "RR" $(PBITMS)/large_rr.pbitm $(PBITMS)/small_rr.pbitm \ + "CH ch Ch cH" $(PBITMS)/large_ch.pbitm $(PBITMS)/small_ch.pbitm \ + "LL ll Ll lL" $(PBITMS)/large_ll.pbitm $(PBITMS)/small_ll.pbitm \ + "RR rr Rr rR" $(PBITMS)/large_rr.pbitm $(PBITMS)/small_rr.pbitm \ include ../Makefile.langcommon #$(LANG)Main.dict.gz: SpanishMain.dict.gz # ln -s $< $@ -SOURCEDICT ?= $(XWDICTPATH)/Spanish/FAA_4.1.utf8.gz +SOURCEDICT ?= $(XWDICTPATH)/Spanish/FAA_4.1.txt $(XWLANG)Main.dict.gz: $(SOURCEDICT) Makefile - zcat $< \ + cat $< \ | tr -d '\r' \ | tr [a-zñ] [A-ZÑ] \ | LANG=$(LANGCODE):$(ENC) grep '^[A-JL-VX-ZÑ]*$$' \ @@ -56,4 +56,4 @@ $(XWLANG)Main.dict.gz: $(SOURCEDICT) Makefile | gzip - > $@ clean: clean_common - rm -rf *.saved \ No newline at end of file + rm -rf *.saved