[Libreoffice-commits] .: solenv/gbuild

Christian Lohmaier cloph at kemper.freedesktop.org
Thu Jul 28 12:46:16 PDT 2011


 solenv/gbuild/platform/macosx.mk |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4a91e688f5ee7b10e00c8e5efd656ed8ebaa7719
Author: Christian Lohmaier <lohmaier+LibreOffice at googlemail.com>
Date:   Thu Jul 28 21:52:09 2011 +0200

    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

diff --git a/solenv/gbuild/platform/macosx.mk b/solenv/gbuild/platform/macosx.mk
index a0c00c9..00f0dd0 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


More information about the Libreoffice-commits mailing list