summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xc++/configure4
-rw-r--r--c++/configure.in4
2 files changed, 4 insertions, 4 deletions
diff --git a/c++/configure b/c++/configure
index c8a42c4..ebd6b91 100755
--- a/c++/configure
+++ b/c++/configure
@@ -1813,13 +1813,13 @@ case "X-$enable_production" in
X-|X-no)
echo "$ac_t"""development"" 1>&6
CONFIG_MODE=development
- CXXFLAGS="$CFLAGS $DEBUG_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $DEBUG_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $DEBUG_CPPFLAGS"
;;
X-pg|X-profile)
echo "$ac_t"""profile"" 1>&6
CONFIG_MODE=profile
- CXXFLAGS="$CFLAGS $PROFILE_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $PROFILE_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $PROFILE_CPPFLAGS"
;;
*)
diff --git a/c++/configure.in b/c++/configure.in
index c489950..9770738 100644
--- a/c++/configure.in
+++ b/c++/configure.in
@@ -220,13 +220,13 @@ case "X-$enable_production" in
X-|X-no)
AC_MSG_RESULT("development")
CONFIG_MODE=development
- CXXFLAGS="$CFLAGS $DEBUG_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $DEBUG_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $DEBUG_CPPFLAGS"
;;
X-pg|X-profile)
AC_MSG_RESULT("profile")
CONFIG_MODE=profile
- CXXFLAGS="$CFLAGS $PROFILE_CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $PROFILE_CXXFLAGS"
CPPFLAGS="$CPPFLAGS $PROFILE_CPPFLAGS"
;;
*)