diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-01 11:30:36 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-01 11:31:20 +0100 |
commit | e1083e6656a378c2c37b6701b59c3fc2d10450d9 (patch) | |
tree | 3f7acb0a54d051f67eeb917f3d62a6028fba1cf7 /libxmlsec | |
parent | 794c1f97f57710846c22c21234e9adacedecd24a (diff) |
fix(?) libxmlsec build with mingw
for some reason there was an infinite loop during build, not sure why this
makes a difference, but surely making it consistent with the other cases
can't hurt
Diffstat (limited to 'libxmlsec')
-rw-r--r-- | libxmlsec/ExternalProject_xmlsec.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libxmlsec/ExternalProject_xmlsec.mk b/libxmlsec/ExternalProject_xmlsec.mk index 5c188b5d3709..e5ed27656ea7 100644 --- a/libxmlsec/ExternalProject_xmlsec.mk +++ b/libxmlsec/ExternalProject_xmlsec.mk @@ -26,8 +26,8 @@ $(call gb_ExternalProject_get_state_target,xmlsec,build) : $(if $(filter NO,$(SYSTEM_NSS)),--disable-pkgconfig) \ CC="$(CC) -mthreads $(if $(filter YES,$(MINGW_SHARED_GCCLIB)),-shared-libgcc)" \ LDFLAGS="-Wl,--no-undefined $(ILIB:;= -L)" \ - LIBS="$(if $(filter YES,$(MINGW_SHARED_GXXLIB)),$(MINGW_SHARED__LIBSTDCPP))" - $(MAKE) \ + LIBS="$(if $(filter YES,$(MINGW_SHARED_GXXLIB)),$(MINGW_SHARED__LIBSTDCPP))" \ + && $(MAKE) \ && touch $@ else |