diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-04 14:34:22 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-04 14:35:54 +0100 |
commit | 9d203cb549d59d4a641e445852e0879b3425654d (patch) | |
tree | d7e86ba625a1c5769a814cd326b3c8617a6effcb /icu | |
parent | 104a855ade9102d694293c1059f99946752f76d8 (diff) |
avoid build error (message) from icu
The build actually finishes successfully (or maybe "successfully") though.
Change-Id: I1ecc7f6f77a087dce7f78ad9afdce15e1a2dffa9
Diffstat (limited to 'icu')
-rw-r--r-- | icu/icu4c-mkdir.patch | 10 | ||||
-rw-r--r-- | icu/makefile.mk | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/icu/icu4c-mkdir.patch b/icu/icu4c-mkdir.patch new file mode 100644 index 000000000000..89249ea15858 --- /dev/null +++ b/icu/icu4c-mkdir.patch @@ -0,0 +1,10 @@ +--- misc/icu/source/dataMakefile.in.sav 2012-04-05 22:49:20.000000000 +0200 ++++ misc/build/icu/source/data/Makefile.in 2012-12-04 14:24:40.548026700 +0100 +@@ -346,6 +346,7 @@ + ifeq ($(PKGDATA_MODE),dll) + SO_VERSION_DATA = $(OUTTMPDIR)/icudata.res + $(SO_VERSION_DATA) : $(MISCSRCDIR)/icudata.rc ++ mkdir -p $(OUTTMPDIR) + rc.exe /i$(srcdir)/../common /i$(top_builddir)/common /fo$@ $(CPPFLAGS) $(SOURCE_FILE) + endif + endif diff --git a/icu/makefile.mk b/icu/makefile.mk index 58b31e86de9f..2d50a2411e66 100644 --- a/icu/makefile.mk +++ b/icu/makefile.mk @@ -56,6 +56,7 @@ PATCH_FILES=\ icu4c.9313.cygwin.patch \ icu4c-macosx.patch \ icu4c-solarisgcc.patch \ + icu4c-mkdir.patch \ .IF "$(OS)"=="ANDROID" PATCH_FILES+=\ |