Kaydet (Commit) 287df6cf authored tarafından Luboš Luňák's avatar Luboš Luňák

pass all arguments to gb_LinkTarget_add_cxxobject properly

Change-Id: Ie7469f32f08c7acf5a972dec12fa75604aa8336d
Reviewed-on: https://gerrit.libreoffice.org/70368
Tested-by: Jenkins
Reviewed-by: 's avatarLuboš Luňák <l.lunak@collabora.com>
üst c51b68dd
...@@ -1325,7 +1325,7 @@ endef ...@@ -1325,7 +1325,7 @@ endef
# call gb_LinkTarget_add_exception_object,linktarget,sourcefile,linktargetmakefilename # call gb_LinkTarget_add_exception_object,linktarget,sourcefile,linktargetmakefilename
define gb_LinkTarget_add_exception_object define gb_LinkTarget_add_exception_object
$(call gb_LinkTarget_add_cxxobject,$(1),$(2),$(gb_LinkTarget_EXCEPTIONFLAGS) $(call gb_LinkTarget__get_cxxflags,$(3))) $(call gb_LinkTarget_add_cxxobject,$(1),$(2),$(gb_LinkTarget_EXCEPTIONFLAGS) $(call gb_LinkTarget__get_cxxflags,$(3)),$(3))
endef endef
# call gb_LinkTarget__use_linktarget_objects,linktarget,linktargets # call gb_LinkTarget__use_linktarget_objects,linktarget,linktargets
...@@ -1362,7 +1362,7 @@ endef ...@@ -1362,7 +1362,7 @@ endef
# call gb_LinkTarget_add_cxxobjects,linktarget,sourcefiles,cxxflags,linktargetmakefilename # call gb_LinkTarget_add_cxxobjects,linktarget,sourcefiles,cxxflags,linktargetmakefilename
define gb_LinkTarget_add_cxxobjects define gb_LinkTarget_add_cxxobjects
$(foreach obj,$(2),$(call gb_LinkTarget_add_cxxobject,$(1),$(obj),$(3))) $(foreach obj,$(2),$(call gb_LinkTarget_add_cxxobject,$(1),$(obj),$(3),$(4)))
endef endef
# call gb_LinkTarget_add_objcobjects,linktarget,sourcefiles,objcflags,linktargetmakefilename # call gb_LinkTarget_add_objcobjects,linktarget,sourcefiles,objcflags,linktargetmakefilename
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment