summaryrefslogtreecommitdiff
path: root/Build/source/libs
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2020-01-13 23:35:52 +0000
committerKarl Berry <karl@freefriends.org>2020-01-13 23:35:52 +0000
commit60ca60a67219386fcd71216ba176754cde3e7e3e (patch)
treebba22b362081d4db5ec5ea0c177afe217ab8641d /Build/source/libs
parent07df7cbdd54b0d08935f3c9f90881763e705038e (diff)
make $(OUTDIR) instead of depending on it, for Solaris
git-svn-id: svn://tug.org/texlive/trunk@53396 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/libs')
-rw-r--r--Build/source/libs/icu/TLpatches/ChangeLog6
-rw-r--r--Build/source/libs/icu/icu-src/source/data/Makefile.in3
2 files changed, 8 insertions, 1 deletions
diff --git a/Build/source/libs/icu/TLpatches/ChangeLog b/Build/source/libs/icu/TLpatches/ChangeLog
index a686aaf1b40..dfffb6cd22f 100644
--- a/Build/source/libs/icu/TLpatches/ChangeLog
+++ b/Build/source/libs/icu/TLpatches/ChangeLog
@@ -1,3 +1,9 @@
+2020-01-13 Karl Berry <karl@freefriends.org>
+
+ * patch-04-data-makefile: new Makefilepatch needed on Solaris
+ found by Mojca, from:
+ https://unicode-org.atlassian.net/browse/ICU-20852
+
2020-01-04 Karl Berry <karl@freefriends.org>
* patch-10-ES: new patch from Mojca.
diff --git a/Build/source/libs/icu/icu-src/source/data/Makefile.in b/Build/source/libs/icu/icu-src/source/data/Makefile.in
index d1fb80fe19b..197858c0a36 100644
--- a/Build/source/libs/icu/icu-src/source/data/Makefile.in
+++ b/Build/source/libs/icu/icu-src/source/data/Makefile.in
@@ -148,7 +148,8 @@ ICUDATA_ARCHIVE = $(firstword $(wildcard $(srcdir)/in/$(ICUDATA_BASENAME_VERSION
# and convert it to the current type.
ifneq ($(ICUDATA_ARCHIVE),)
ICUDATA_SOURCE_ARCHIVE = $(OUTDIR)/$(ICUDATA_PLATFORM_NAME).dat
-$(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE) $(OUTDIR)
+$(ICUDATA_SOURCE_ARCHIVE): $(ICUDATA_ARCHIVE)
+ $(MKINSTALLDIRS) $(OUTDIR)
$(INVOKE) $(TOOLBINDIR)/icupkg -t$(ICUDATA_CHAR) $(ICUDATA_ARCHIVE) $(ICUDATA_SOURCE_ARCHIVE)
endif
else