diff options
author | Michael Stahl <mstahl@redhat.com> | 2011-10-19 16:40:04 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2011-10-21 20:17:18 +0200 |
commit | 2c2cffff06d3285373b172dc0b8c98c0218eb0ad (patch) | |
tree | fd6963a9a6ffe1c5ae660eb9dd60e15a8e2d7f4a | |
parent | ccc4b087303fd0fb1446056c41445ab68a415146 (diff) |
CustomTarget: remove unnecessary dependency
There already is a dependency from the library to the package, so this
dependency should not be necessary.
Furthermore, the command is executed spuriously always, because the .done
file is always newer than the generated files.
-rw-r--r-- | solenv/gbuild/CustomTarget.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/solenv/gbuild/CustomTarget.mk b/solenv/gbuild/CustomTarget.mk index 0df096aadf76..644ba2c24ec4 100644 --- a/solenv/gbuild/CustomTarget.mk +++ b/solenv/gbuild/CustomTarget.mk @@ -59,8 +59,6 @@ $(if $(filter $(2),$(gb_CustomTarget_REPOSITORYNAMES)),,\ gb_CustomTarget_REPO_$(1) := $(2) $(call gb_CustomTarget_get_target,$(1)) : \ $(call gb_CustomTarget__get_makefile,$($(2)),$(1)) -$(call gb_CustomTarget_get_workdir,$(1))/% : $(call gb_CustomTarget_get_target,$(1)) - test -f $@ || (echo "Missing file $@ which should have been generated from CustomTarget $(1), but was not." && false) endef |