aboutsummaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorVincent Richard <[email protected]>2005-12-01 14:34:32 +0100
committerVincent Richard <[email protected]>2005-12-01 14:34:32 +0100
commit9938aa65ab51033a06d6dd62705d1a87c1dda12d (patch)
treec919cc46042a358edb5e105568d9401b9972d5ef /SConstruct
parentFixed bug when disconnecting SMTP. (diff)
downloadvmime-9938aa65ab51033a06d6dd62705d1a87c1dda12d.tar.gz
vmime-9938aa65ab51033a06d6dd62705d1a87c1dda12d.zip
Fixed typo in CXXFLAGS/debug.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index e1e07a22..356e8193 100644
--- a/SConstruct
+++ b/SConstruct
@@ -1749,13 +1749,13 @@ CXXFLAGS=""
if test x$VMIME_DEBUG = x1 ; then
# -g
OLD_CXXFLAGS="$CXXFLAGS"
- CXX_FLAGS="$CXXFLAGS -g"
+ CXXFLAGS="$CXXFLAGS -g"
AC_MSG_CHECKING(whether cc accepts -g)
AC_TRY_COMPILE(,,echo yes,echo no; CXXFLAGS="$OLD_CXXFLAGS")
else
# -O2
OLD_CXXFLAGS="$CXXFLAGS"
- CXX_FLAGS="$CXXFLAGS -O2"
+ CXXFLAGS="$CXXFLAGS -O2"
AC_MSG_CHECKING(whether cc accepts -O2)
AC_TRY_COMPILE(,,echo yes,echo no; CXXFLAGS="$OLD_CXXFLAGS")
fi