summaryrefslogtreecommitdiffstats
path: root/c++/configure.in
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-15 21:13:09 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-15 21:13:09 (GMT)
commita8533e99afa2834e929b9a7ea0e7d9c754cf6d51 (patch)
treed1f798cf3c971bee2ac53c503f87e5284aa40113 /c++/configure.in
parente89c46e6b9cee555e72d6c8fe4e9be9d3dfe6381 (diff)
downloadhdf5-a8533e99afa2834e929b9a7ea0e7d9c754cf6d51.zip
hdf5-a8533e99afa2834e929b9a7ea0e7d9c754cf6d51.tar.gz
hdf5-a8533e99afa2834e929b9a7ea0e7d9c754cf6d51.tar.bz2
[svn-r2939] Purpose:
Bug Description: When copying the --enable-production stuff, I forgot to change the CFLAGS to CXXFLAGS... Platforms tested: Solaris
Diffstat (limited to 'c++/configure.in')
-rw-r--r--c++/configure.in4
1 files changed, 2 insertions, 2 deletions
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"
;;
*)