[Libreoffice-commits] .: solenv/gbuild

Norbert Thiebaud nthiebaud at kemper.freedesktop.org
Wed Jun 6 10:31:43 PDT 2012


 solenv/gbuild/platform/com_GCC_class.mk |   14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 3212b694eebb260495bee1fa46c2e20b3f8c630c
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Wed Jun 6 12:31:17 2012 -0500

    fix typo that prevented the proper management of .d files
    
    Change-Id: I2e958fde37bc2cf13d4b37d8e8ae9e7bd64061d2

diff --git a/solenv/gbuild/platform/com_GCC_class.mk b/solenv/gbuild/platform/com_GCC_class.mk
index 478d5fd..b098c99 100644
--- a/solenv/gbuild/platform/com_GCC_class.mk
+++ b/solenv/gbuild/platform/com_GCC_class.mk
@@ -21,10 +21,10 @@
 # instead of those above.
 
 ifeq ($(gb_FULLDEPS),$(true))
-gb_ccx_dep_generation_options=-MMD -MT $(1) -MP -MF $(4)_
-gb_cxx_dep_copy=&& 	mv $(4)_ $(4)
+gb_cxx_dep_generation_options=-MMD -MT $(1) -MP -MF $(4)_
+gb_cxx_dep_copy=&& mv $(4)_ $(4)
 else
-gb_ccx_dep_generation_options=
+gb_cxx_dep_generation_options=
 gb_cxx_dep_copy=
 endif
 
@@ -62,10 +62,10 @@ $(call gb_Helper_abbreviate_dirs,\
 		$(T_CFLAGS) \
 		-c $(3) \
 		-o $(1) \
-		$(gb_ccx_dep_generation_options) \
+		$(gb_cxx_dep_generation_options) \
 		-I$(dir $(3)) \
 		$(INCLUDE) \
-	    $(gb_ccx_dep_copy) \
+	    $(gb_cxx_dep_copy) \
 		)
 endef
 
@@ -83,10 +83,10 @@ $(call gb_Helper_abbreviate_dirs,\
 		$(T_CXXFLAGS) \
 		-c $(3) \
 		-o $(1) \
-	    $(gb_ccx_dep_generation_options) \
+	    $(gb_cxx_dep_generation_options) \
 		-I$(dir $(3)) \
 		$(INCLUDE_STL) $(INCLUDE) \
-	    $(gb_ccx_dep_copy) \
+	    $(gb_cxx_dep_copy) \
 		)
 endef
 


More information about the Libreoffice-commits mailing list