[Libreoffice-commits] core.git: solenv/gbuild

Michael Stahl mstahl at redhat.com
Fri Sep 13 04:49:55 PDT 2013


 solenv/gbuild/LinkTarget.mk |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 1f7ee569ce0cb1de6c8caad27fe85e770bded391
Author: Michael Stahl <mstahl at redhat.com>
Date:   Fri Sep 13 13:46:13 2013 +0200

    gbuild: add missing directory dependencies for Obj{C,Cxx}Object
    
    Change-Id: Ifafcbe6ed88a2cc18ecb1ff123adf974e10e5187

diff --git a/solenv/gbuild/LinkTarget.mk b/solenv/gbuild/LinkTarget.mk
index 8ea9ae4..44fc886 100644
--- a/solenv/gbuild/LinkTarget.mk
+++ b/solenv/gbuild/LinkTarget.mk
@@ -957,6 +957,7 @@ $(call gb_ObjCObject_get_target,$(2)) : \
 ifeq ($(gb_FULLDEPS),$(true))
 $(call gb_LinkTarget_get_dep_target,$(1)) : OBJCOBJECTS += $(2)
 $(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_ObjCObject_get_dep_target,$(2))
+$(call gb_ObjCObject_get_dep_target,$(2)) :| $(dir $(call gb_ObjCObject_get_dep_target,$(2))).dir
 endif
 
 endef
@@ -975,6 +976,7 @@ $(call gb_ObjCxxObject_get_target,$(2)) : \
 ifeq ($(gb_FULLDEPS),$(true))
 $(call gb_LinkTarget_get_dep_target,$(1)) : OBJCXXOBJECTS += $(2)
 $(call gb_LinkTarget_get_dep_target,$(1)) : $(call gb_ObjCxxObject_get_dep_target,$(2))
+$(call gb_ObjCxxObject_get_dep_target,$(2)) :| $(dir $(call gb_ObjCxxObject_get_dep_target,$(2))).dir
 endif
 
 endef


More information about the Libreoffice-commits mailing list