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 /libxml2 | |
parent | 09a015e64e0433652beaca2d5294162c20d97a8b (diff) |
comma need to be escape in Makefile when in argument of $(call
Change-Id: I930aacad47780a085ef8eec7f3b7fc6600528afb
Diffstat (limited to 'libxml2')
-rw-r--r-- | libxml2/ExternalProject_xml2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libxml2/ExternalProject_xml2.mk b/libxml2/ExternalProject_xml2.mk index fc68d9da6b7e..8d7f00c334f0 100644 --- a/libxml2/ExternalProject_xml2.mk +++ b/libxml2/ExternalProject_xml2.mk @@ -24,7 +24,7 @@ $(call gb_ExternalProject_get_state_target,xml2,build): $(if $(filter YES,$(CROSS_COMPILING)),--build=$(BUILD_PLATFORM) --host=$(HOST_PLATFORM)) \ CC="$(CC) -mthreads $(if $(filter YES,$(MINGW_SHARED_GCCLIB)),-shared-libgcc)" \ LIBS="-lws2_32 $(if $(filter YES,$(MINGW_SHARED_GXXLIB)),$(MINGW_SHARED_LIBSTDCPP))" \ - LDFLAGS="-Wl,--no-undefined -Wl,--enable-runtime-pseudo-reloc-v2" \ + LDFLAGS="-Wl$(COMMA)--no-undefined -Wl$(COMMA)--enable-runtime-pseudo-reloc-v2" \ OBJDUMP=objdump \ && $(MAKE) \ ) |