diff options
author | Peter Foley <pefoley2@verizon.net> | 2012-11-08 21:45:59 -0500 |
---|---|---|
committer | Peter Foley <pefoley2@verizon.net> | 2012-11-08 21:45:59 -0500 |
commit | a8251cfed18a33a7f2e33e64060ec616d8d21fcc (patch) | |
tree | 7db5dcaebf504fc9acc2eda49f15efd46e0051f5 /lcms2 | |
parent | 8905c0e4b0a01297875359282ba4bdd748be0cf1 (diff) |
make does not like commas
Change-Id: Icc1e7f5be1a4c06242793948a07de20cf3e03b61
Diffstat (limited to 'lcms2')
-rw-r--r-- | lcms2/ExternalProject_lcms2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lcms2/ExternalProject_lcms2.mk b/lcms2/ExternalProject_lcms2.mk index 4a7a8eb78fab..5b1eeea45800 100644 --- a/lcms2/ExternalProject_lcms2.mk +++ b/lcms2/ExternalProject_lcms2.mk @@ -34,7 +34,7 @@ $(call gb_ExternalProject_get_state_target,lcms2,build): cd $(EXTERNAL_WORKDIR) \ && ./configure --without-jpeg --without-tiff --with-pic \ $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ - $(if $(filter WNTGCC,$(OS)$(COM)),LDFLAGS="-Wl,--export-all-symbols -Wl,--enable-stdcall-fixup -Wl,--enable-runtime-pseudo-reloc-v2") \ + $(if $(filter-out WNTGCC,$(OS)$(COM)),,LDFLAGS="-Wl,--export-all-symbols -Wl,--enable-stdcall-fixup -Wl,--enable-runtime-pseudo-reloc-v2") \ CPPFLAGS=" $(SOLARINC)" \ $(if $(filter IOS ANDROID,$(OS)),--disable-shared, --enable-shared --disable-static) \ && cd src \ |