aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/icu/fix_parallel_build_on_windows.patch
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/icu/fix_parallel_build_on_windows.patch
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/icu/fix_parallel_build_on_windows.patch')
-rw-r--r--vcpkg/ports/icu/fix_parallel_build_on_windows.patch25
1 files changed, 25 insertions, 0 deletions
diff --git a/vcpkg/ports/icu/fix_parallel_build_on_windows.patch b/vcpkg/ports/icu/fix_parallel_build_on_windows.patch
new file mode 100644
index 0000000..6bd9109
--- /dev/null
+++ b/vcpkg/ports/icu/fix_parallel_build_on_windows.patch
@@ -0,0 +1,25 @@
+diff --urN a/source/data/Makefile.in b/source/data/Makefile.in
+--- a/source/data/Makefile.in
++++ b/source/data/Makefile.in
+@@ -236,11 +236,12 @@
+ ## Include the main build rules for data files
+ include $(top_builddir)/$(subdir)/rules.mk
+
++PKGDATA_LIST = $(TMP_DIR)/icudata.lst
+
+ ifeq ($(ENABLE_SO_VERSION_DATA),1)
+ ifeq ($(PKGDATA_MODE),dll)
+ SO_VERSION_DATA = $(OUTTMPDIR)/icudata.res
+-$(SO_VERSION_DATA) : $(MISCSRCDIR)/icudata.rc | $(TMP_DIR)/dirs.timestamp
++$(SO_VERSION_DATA) : $(MISCSRCDIR)/icudata.rc $(PKGDATA_LIST)
+ ifeq ($(MSYS_RC_MODE),1)
+ rc.exe -i$(srcdir)/../common -i$(top_builddir)/common -fo$@ $(CPPFLAGS) $<
+ else
+@@ -249,7 +250,6 @@
+ endif
+ endif
+
+-PKGDATA_LIST = $(TMP_DIR)/icudata.lst
+
+
+ #####################################################