You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ar...@apache.org on 2012/11/15 00:30:46 UTC

svn commit: r1409553 - /incubator/ooo/branches/gbuild/main/solenv/gbuild/LinkTarget.mk

Author: arist
Date: Wed Nov 14 23:30:45 2012
New Revision: 1409553

URL: http://svn.apache.org/viewvc?rev=1409553&view=rev
Log:
gnumake4_056_38ca0135d0e9.patch
# HG changeset patch
# User Michael Stahl <ms...@openoffice.org>
# Date 1302178164 0
# Node ID 38ca0135d0e95fa325154a72121300ee158f38e9
# Parent  a016e9618f3d9f823642b74f61639286aa42a630
gnumake4: LinkTarget.mk: remove some unnecessary arguments


Modified:
    incubator/ooo/branches/gbuild/main/solenv/gbuild/LinkTarget.mk

Modified: incubator/ooo/branches/gbuild/main/solenv/gbuild/LinkTarget.mk
URL: http://svn.apache.org/viewvc/incubator/ooo/branches/gbuild/main/solenv/gbuild/LinkTarget.mk?rev=1409553&r1=1409552&r2=1409553&view=diff
==============================================================================
--- incubator/ooo/branches/gbuild/main/solenv/gbuild/LinkTarget.mk (original)
+++ incubator/ooo/branches/gbuild/main/solenv/gbuild/LinkTarget.mk Wed Nov 14 23:30:45 2012
@@ -44,11 +44,11 @@ endif
 
 define gb_CObject__rules
 $$(call gb_CObject_get_target,%) : $$(call gb_CObject_get_source,$(1),%)
-	$$(call gb_CObject__command,$$@,$$*,$$<,$$(DEFS),$$(CFLAGS),$$(INCLUDE))
+	$$(call gb_CObject__command,$$@,$$*,$$<)
 
 ifeq ($(gb_FULLDEPS),$(true))
 $$(call gb_CObject_get_dep_target,%) : $$(call gb_CObject_get_source,$(1),%)
-	$$(call gb_CObject__command_dep,$$@,$$*,$$<,$$(DEFS),$$(CFLAGS),$$(INCLUDE))
+	$$(call gb_CObject__command_dep,$$@,$$*,$$<)
 endif
 
 endef
@@ -188,11 +188,11 @@ endif
 
 define gb_ObjCxxObject__rules
 $$(call gb_ObjCxxObject_get_target,%) : $$(call gb_ObjCxxObject_get_source,$(1),%)
-	$$(call gb_ObjCxxObject__command,$$@,$$*,$$<,$$(DEFS),$$(OBJCXXFLAGS),$$(INCLUDE_STL) $$(INCLUDE))
+	$$(call gb_ObjCxxObject__command,$$@,$$*,$$<)
 
 ifeq ($(gb_FULLDEPS),$(true))
 $$(call gb_ObjCxxObject_get_dep_target,%) : $$(call gb_ObjCxxObject_get_source,$(1),%)
-	$$(call gb_ObjCxxObject__command_dep,$$@,$$*,$$<,$$(DEFS),$$(OBJCXXFLAGS),$$(INCLUDE_STL) $$(INCLUDE))
+	$$(call gb_ObjCxxObject__command_dep,$$@,$$*,$$<)
 endif
 
 endef