diff options
author | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-07-28 21:52:09 +0200 |
---|---|---|
committer | Christian Lohmaier <lohmaier+LibreOffice@googlemail.com> | 2011-07-28 21:52:09 +0200 |
commit | 11a1c299ab6695b648d80166523edcc915942123 (patch) | |
tree | 479c1680b5508963e162593881ca87d403c21995 | |
parent | c3dc8ab4ccf3370bf3903760bd46212a5a820c51 (diff) |
there is no :+= or +:= append-operator in gnu make, there is only +=
and how it behaves depends on how the macro-variable has been defined
previously. http://www.gnu.org/s/hello/manual/make/Appending.html
-rw-r--r-- | solenv/gbuild/platform/macosx.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk index a0c00c9e0420..00f0dd0c77e9 100644 --- a/solenv/gbuild/platform/macosx.mk +++ b/solenv/gbuild/platform/macosx.mk @@ -105,7 +105,7 @@ gb_CXXFLAGS := \ #-malign-natural \ might be removed? ifeq ($(HAVE_GCC_NO_LONG_DOUBLE),TRUE) -gb_CXXFLAGS +:= -Wno-long-double +gb_CXXFLAGS += -Wno-long-double endif # these are to get g++ to switch to Objective-C++ mode |