summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-27 13:02:46 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-03-27 13:02:46 +0000
commit358c188550d74a47d1fb817de7d9add766720f04 (patch)
tree1984b08b5cf097dce4005b517e1264c7160a66cc
parentace4eadb66f3cb197b4befee1598a653f3d4e1dc (diff)
Check for DEBUG="no". This closes PR Cactus/952.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2675 17b73243-c579-4c4c-a9d2-2d5706c11dac
-rwxr-xr-xlib/make/configure4
-rw-r--r--lib/make/configure.in2
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/make/configure b/lib/make/configure
index 028be989..f06d9131 100755
--- a/lib/make/configure
+++ b/lib/make/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Header: configure.in
+# From configure.in Header: /cactusdevcvs/Cactus/lib/make/configure.in
@@ -4310,7 +4310,7 @@ LDFLAGS="$LDFLAGS $KNOWN_LDFLAGS"
# Define the type of debugging to use
-if test -n "$DEBUG" ; then
+if test -n "$DEBUG" -a "x$DEBUG" != 'xno' ; then
case "$DEBUG" in
MEMORY)
cat >> confdefs.h <<\EOF
diff --git a/lib/make/configure.in b/lib/make/configure.in
index 2a353e65..503beb67 100644
--- a/lib/make/configure.in
+++ b/lib/make/configure.in
@@ -692,7 +692,7 @@ AC_SUBST(FCOMPILEONLY)
# Define the type of debugging to use
-if test -n "$DEBUG" ; then
+if test -n "$DEBUG" -a "x$DEBUG" != 'xno' ; then
case "$DEBUG" in
MEMORY)
AC_DEFINE(CCTK_TRACEMEMORY)