summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authornanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-18 22:21:48 +0000
committernanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-01-18 22:21:48 +0000
commita4dc29061256e6852b6b6c075f0d3af6e9b6dd03 (patch)
treef3e65fe30a39c877327e1f901f04521a5289376d /include
parent2a91408863f872486e855dff4b1342386a8f1df5 (diff)
downloadATCD-a4dc29061256e6852b6b6c075f0d3af6e9b6dd03.tar.gz
*** empty log message ***
Diffstat (limited to 'include')
-rw-r--r--include/makeinclude/wrapper_macros.GNU7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index 1b3712b0f94..b9330ee2670 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -219,8 +219,11 @@ ifeq ($(debug),0)
endif # debug
ifeq ($(debug),)
- CFLAGS += -DACE_NDEBUG
-## CCFLAGS += -DACE_NDEBUG
+ ifeq (,$(findstring $(CFLAGS),$(CCFLAGS)))
+ CCFLAGS += -DACE_NDEBUG
+ else
+ CFLAGS += -DACE_NDEBUG
+ endif
else
CFLAGS += $(DCFLAGS)
CCFLAGS += $(DCCFLAGS)