From a0e3e37c16477dc72471efa4248eef2a8a0c7b30 Mon Sep 17 00:00:00 2001 From: meep-eep Date: Fri, 27 Sep 2002 21:04:07 +0000 Subject: [PATCH] Bugfix for --enable-debug check. git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@89 8092fc87-c524-0410-9efc-e669fe64eaf9 --- sc2/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sc2/configure.ac b/sc2/configure.ac index a4c20d520..1683f7059 100644 --- a/sc2/configure.ac +++ b/sc2/configure.ac @@ -184,7 +184,7 @@ AC_ARG_ENABLE(debug, esac], [debug=false]) AM_CONDITIONAL(DEBUG, test x$debug = xtrue) -if [ "x$debug" = "xtrue" ]; then +if test "x$debug" = "xtrue"; then CFLAGS="$CFLAGS -g" fi