From 34f04aa6533b6f6f9894907cd29f5d52d9e0df92 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 3 Apr 2025 09:15:59 +0200 Subject: [PATCH] Fix update-unicode make target The addition of SpecialCasing.txt by commit 286a365b9c2 was not added to the make target dependencies, so the invoked script would fail because the required file wasn't downloaded first. (The meson version appears to work correctly.) --- src/common/unicode/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/unicode/Makefile b/src/common/unicode/Makefile index f41c850c645..c150e403cda 100644 --- a/src/common/unicode/Makefile +++ b/src/common/unicode/Makefile @@ -36,7 +36,7 @@ CompositionExclusions.txt CaseFolding.txt DerivedCoreProperties.txt DerivedNorma unicode_version.h: generate-unicode_version.pl $(PERL) $< --version $(UNICODE_VERSION) -unicode_case_table.h: generate-unicode_case_table.pl CaseFolding.txt UnicodeData.txt +unicode_case_table.h: generate-unicode_case_table.pl CaseFolding.txt SpecialCasing.txt UnicodeData.txt $(PERL) $< unicode_category_table.h: generate-unicode_category_table.pl DerivedCoreProperties.txt PropList.txt UnicodeData.txt -- 2.39.5