Bugfix for --enable-debug check.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@89 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2002-09-27 21:04:07 +00:00
parent d474af1565
commit a0e3e37c16
+1 -1
View File
@@ -184,7 +184,7 @@ AC_ARG_ENABLE(debug,
esac], esac],
[debug=false]) [debug=false])
AM_CONDITIONAL(DEBUG, test x$debug = xtrue) AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
if [ "x$debug" = "xtrue" ]; then if test "x$debug" = "xtrue"; then
CFLAGS="$CFLAGS -g" CFLAGS="$CFLAGS -g"
fi fi