summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2025-04-03 07:15:59 +0000
committerPeter Eisentraut2025-04-03 07:20:25 +0000
commit34f04aa6533b6f6f9894907cd29f5d52d9e0df92 (patch)
tree0b661c93555a6ea70a72e76f9741e6bcf31915c8
parent4868c96bc8c60145958f1a83bbe9409718a696cb (diff)
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.)
-rw-r--r--src/common/unicode/Makefile2
1 files changed, 1 insertions, 1 deletions
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