diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-02-23 16:04:37 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-02-23 16:04:48 -0600 |
commit | 08eb3c34c209184a8a7d1ea63cc97a0c5205aa7c (patch) | |
tree | d1e64b4b16f68a3d1f912c37a925bb0acb16d4d2 /icu | |
parent | 09a015e64e0433652beaca2d5294162c20d97a8b (diff) |
comma need to be escape in Makefile when in argument of $(call
Change-Id: I930aacad47780a085ef8eec7f3b7fc6600528afb
Diffstat (limited to 'icu')
-rw-r--r-- | icu/ExternalProject_icu.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icu/ExternalProject_icu.mk b/icu/ExternalProject_icu.mk index a376b4f51241..71d6cbacd264 100644 --- a/icu/ExternalProject_icu.mk +++ b/icu/ExternalProject_icu.mk @@ -33,7 +33,7 @@ $(call gb_ExternalProject_get_state_target,icu,build) : $(call gb_ExternalProject_run,build,\ CPPFLAGS=$(icu_CPPFLAGS) CFLAGS="-O -D_MT" CXXFLAGS="-O -D_MT" \ LIBS="$(if $(filter YES,$(MINGW_SHARED_GXXLIB)),$(MINGW_SHARED_LIBSTDCPP))" \ - LDFLAGS="-L$(COMPATH)/lib -Wl,--enable-runtime-pseudo-reloc-v2 \ + LDFLAGS="-L$(COMPATH)/lib -Wl$(COMMA)--enable-runtime-pseudo-reloc-v2 \ $(if $(filter YES,$(MINGW_SHARED_GCCLIB)),-shared-libgcc)" \ ./configure $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM) \ |