diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-10-05 12:32:14 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-10-05 12:32:32 +0200 |
commit | 3f3853f5693744da7a16d19ce2e5e949ec71131a (patch) | |
tree | 57720d0d3bb98b58011155d723d8effe2d2d9c82 | |
parent | 574ba5206f1251b09df2ec32f525adf0f985cf6d (diff) |
In gbuild, set OSL_DEBUG_LEVEL=1 if non-product (same as dmake).
-rw-r--r-- | solenv/gbuild/gbuild.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk index 0d6f64f08f5a..c91b99f1ce8f 100644 --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -97,6 +97,8 @@ endif gb_DEBUGLEVEL := 0 ifneq ($(strip $(DEBUG)$(debug)),) gb_DEBUGLEVEL := 1 +else ifeq ($(gb_PRODUCT),$(false)) +gb_DEBUGLEVEL := 1 endif ifneq ($(strip $(DBGLEVEL)$(dbglevel)),) |