aboutsummaryrefslogtreecommitdiff
path: root/ports/icu/fix_parallel_build_on_windows.patch
blob: b3b42b4230cf1af07881ae9f98dff123a49a7335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
diff --urN a/source/data/Makefile.in b/source/data/Makefile.in
--- a/source/data/Makefile.in
+++ b/source/data/Makefile.in
@@ -221,11 +221,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
+$(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
@@ -234,7 +235,6 @@
 endif
 endif

-PKGDATA_LIST = $(TMP_DIR)/icudata.lst


 #####################################################