From 4acd51b2e3c638107caecd275fd51a2970f35581 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 30 Dec 2025 17:20:16 +0100 Subject: fix makefile: download selected versions of unicode files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f5e26c8..7190f5f 100644 --- a/Makefile +++ b/Makefile @@ -66,10 +66,10 @@ libcmap.$(LIBEXT): $(LOBJ) $(CC) $(LIBFLAGS) -o $@ $(LOBJ) $(LDFLAGS) Scripts.$(UNICODE_VERSION).txt: - $(DOWNLOAD) 'https://www.unicode.org/Public/17.0.0/ucd/Scripts.txt' > $@ + $(DOWNLOAD) 'https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/Scripts.txt' > $@ Blocks.$(UNICODE_VERSION).txt: - $(DOWNLOAD) 'https://www.unicode.org/Public/17.0.0/ucd/Blocks.txt' > $@ + $(DOWNLOAD) 'https://www.unicode.org/Public/$(UNICODE_VERSION)/ucd/Blocks.txt' > $@ Scripts.txt.c: Scripts.$(UNICODE_VERSION).txt Scripts.parse ./Scripts.parse < $(@:.txt.c=).$(UNICODE_VERSION).txt > $@ -- cgit v1.3.1