diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-03-22 17:26:11 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-03-22 17:32:23 -0500 |
commit | 7be7f9a7863cbd862dd5a5462c508db03c56c8d1 (patch) | |
tree | 3c5c56f0e690b4f83da6dc15e601cddb0b127518 | |
parent | 2413fd4f9f784fbde821b087b78ecf3a6afb4f31 (diff) |
gbuild: allow the tinderboxes to bypass the dependencies generations
-rw-r--r-- | solenv/gbuild/gbuild.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 119f6e5bc33a..5ad2378bc677 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -113,8 +113,12 @@ endif # for clean, setuplocal and removelocal goals we switch off dependencies ifneq ($(filter cleanpackmodule clean setuplocal removelocal showdeliverables help debugrun,$(MAKECMDGOALS)),) +ifdef TINDERBUILD gb_FULLDEPS := $(false) else +gb_FULLDEPS := $(false) +endif +else gb_FULLDEPS := $(true) endif |