summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>1997-12-03 13:38:02 +0000
committerSteve Huston <shuston@riverace.com>1997-12-03 13:38:02 +0000
commitddf26b133ba0617e9625e4e64e4d6793688f142f (patch)
treea010b02964887a9efcde90e1204059dc052a399b
parent2d1bb65134a7aeeb48de1c29a8a9a1cb202a773b (diff)
downloadATCD-ddf26b133ba0617e9625e4e64e4d6793688f142f.tar.gz
Moved some compiler options from DCFLAGS to CCFLAGS to work using debug or not
-rw-r--r--include/makeinclude/platform_hpux_gcc.GNU4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/makeinclude/platform_hpux_gcc.GNU b/include/makeinclude/platform_hpux_gcc.GNU
index 89ebd45bc47..8b0745fc5f3 100644
--- a/include/makeinclude/platform_hpux_gcc.GNU
+++ b/include/makeinclude/platform_hpux_gcc.GNU
@@ -11,8 +11,8 @@ HPUX_VERS := $(join $(word 2,$(HPVERS_WORDS)),$(word 3,$(HPVERS_WORDS)))
CC = gcc
CXX = g++
CFLAGS += -w
-CCFLAGS += $(CFLAGS) -fno-implicit-templates
-DCFLAGS += -g -DHPUX_VERS=$(HPUX_VERS) -D_REENTRANT
+CCFLAGS += $(CFLAGS) -fno-implicit-templates -DHPUX_VERS=$(HPUX_VERS) -D_REENTRANT
+DCFLAGS += -g
DLD = $(CXX)
LD = $(CXX)
OCFLAGS += -O2