diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-03-23 12:39:45 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-03-23 21:58:20 +0100 |
commit | d59b8013424d057f120681d11874c2ef42e17163 (patch) | |
tree | ba76b728b1e29398ce859c0d8333c261e7198538 /solenv | |
parent | d56bcf9dbfa271c95971878171022c1fb4d1044a (diff) |
make gbuild follow --disable-dependency-tracking too
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/gbuild.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index d16d33affee9..5186a371567a 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -111,11 +111,11 @@ ifneq ($(gb_DEBUGLEVEL),0) gb_SYMBOL := $(true) endif -# for clean, setuplocal and removelocal goals we switch off dependencies -ifneq ($(filter cleanpackmodule clean setuplocal removelocal showdeliverables help debugrun,$(MAKECMDGOALS)),) +ifneq ($(nodep),) gb_FULLDEPS := $(false) else -ifdef TINDERBUILD +# for clean, setuplocal and removelocal goals we switch off dependencies +ifneq ($(filter cleanpackmodule clean setuplocal removelocal showdeliverables help debugrun,$(MAKECMDGOALS)),) gb_FULLDEPS := $(false) else gb_FULLDEPS := $(true) |