From: Peter Eisentraut Date: Thu, 3 Apr 2025 07:15:59 +0000 (+0200) Subject: Fix update-unicode make target X-Git-Tag: REL_18_BETA1~316 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=34f04aa6533b6f6f9894907cd29f5d52d9e0df92;p=thirdparty%2Fpostgresql.git 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.) --- 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