diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-03-22 23:57:09 -0500 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2012-03-23 00:05:47 -0500 |
commit | 9d2968d6dd12cda797aa31bc0f0798f835cd073a (patch) | |
tree | 39e2d628434df05e8f28a931306331a1b857edd7 | |
parent | 01eb464eb418159f1f11ce0dce5e1a8a10e01408 (diff) |
disable gb_FULLDEPS when TINDERBUILD is set _and_ we are really building
-rw-r--r-- | solenv/gbuild/gbuild.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index a26f4512c19d..d16d33affee9 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -113,14 +113,14 @@ 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 +ifdef TINDERBUILD gb_FULLDEPS := $(false) -endif else gb_FULLDEPS := $(true) endif +endif # save user-supplied flags for latter use ifneq ($(strip $(CFLAGS)),) |