diff options
author | Tony Theodore <tonyt@logyst.com> | 2013-05-24 13:56:40 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2013-05-24 13:56:40 (GMT) |
commit | 8cad46b135ea1f35bc6f7c94cc661a11adc9a349 (patch) | |
tree | ad74ed0b8f1ac59f9ad6860e1d059262409cd7fc /src/icu4c.mk | |
parent | 4885a1047cbf9d1d128c6c1c4c264699d1456a67 (diff) | |
download | mxe-8cad46b135ea1f35bc6f7c94cc661a11adc9a349.zip mxe-8cad46b135ea1f35bc6f7c94cc661a11adc9a349.tar.gz mxe-8cad46b135ea1f35bc6f7c94cc661a11adc9a349.tar.bz2 |
package icu4c: fix for gmake 3.82 strangeness
Diffstat (limited to 'src/icu4c.mk')
-rw-r--r-- | src/icu4c.mk | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/icu4c.mk b/src/icu4c.mk index b1f7c04..81bbc1d 100644 --- a/src/icu4c.mk +++ b/src/icu4c.mk @@ -19,7 +19,6 @@ define $(PKG)_BUILD CC=gcc CXX=g++ $(MAKE) -C '$(1).native' -j '$(JOBS)' - $(SED) -i 's,\(baselibs.*\),\1 -lstdc++,' '$(1)/source/config/icu.pc.in' mkdir '$(1).cross' && cd '$(1).cross' && '$(1)/source/configure' \ --host='$(TARGET)' \ --build="`config.guess`" \ @@ -30,7 +29,7 @@ define $(PKG)_BUILD CFLAGS=-DU_USING_ICU_NAMESPACE=0 \ SHELL=bash - $(MAKE) -C '$(1).cross' -j '$(JOBS)' install LIBPREFIX=lib + $(MAKE) -C '$(1).cross' -j '$(JOBS)' install ln -sf '$(PREFIX)/$(TARGET)/bin/icu-config' '$(PREFIX)/bin/$(TARGET)-icu-config' # Static libs are prefixed with an `s` but the config script |