diff options
| -rw-r--r-- | configure.ac | 22 | 
1 files changed, 12 insertions, 10 deletions
diff --git a/configure.ac b/configure.ac index ae4046c298d..5cc87d1aaef 100644 --- a/configure.ac +++ b/configure.ac @@ -751,16 +751,6 @@ AC_ARG_ENABLE([debug],                AC_HELP_STRING([--enable-debug],                               [Enable debug build options.])) -BUILD_DEBUG=no -if test "x$enable_debug" = "xyes"; then -   BUILD_DEBUG=yes -   CFLAGS=`echo $CFLAGS | sed -e s/O2/O0/` -else -   BUILD_DEBUG=no -fi -AC_SUBST(CFLAGS) -# end enable debug section -  # syslog section  AC_ARG_ENABLE([syslog],  	      AC_HELP_STRING([--disable-syslog], @@ -858,6 +848,18 @@ if test "x$BUILD_GLUPY" = "xyes"; then  fi  # end glupy section +# Other stuff (most notably the glupy section) might have injected another -O2 +# into CFLAGS, so *do this last*. +BUILD_DEBUG=no +if test "x$enable_debug" = "xyes"; then +   BUILD_DEBUG=yes +   CFLAGS=`echo $CFLAGS | sed -e s/O2/O0/g` +else +   BUILD_DEBUG=no +fi +AC_SUBST(CFLAGS) +# end enable debug section +  AC_SUBST(GF_HOST_OS)  AC_SUBST([GF_GLUSTERFS_LIBS])  AC_SUBST(GF_GLUSTERFS_CFLAGS)  | 
