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

New commits:
commit 3212b694eebb260495bee1fa46c2e20b3f8c630c
Author: Norbert Thiebaud <nthieb...@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
 
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to