summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorRico Tzschichholz <ricotz@ubuntu.com>2018-11-28 12:57:58 +0100
committerRico Tzschichholz <ricotz@ubuntu.com>2018-11-28 12:57:58 +0100
commit120e085963ccdc59d89876c41a51b24d9644f359 (patch)
tree3e71ec1ff16fabcb7a1df015ac2f4381751ee3ce /configure.ac
parente1139c1a9cfb50e989a6d50f671128b2e0c5df52 (diff)
downloadvala-120e085963ccdc59d89876c41a51b24d9644f359.tar.gz
build: Fix typo in --enable-debug check
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 40ee02a14..16ebd1f81 100644
--- a/configure.ac
+++ b/configure.ac
@@ -83,7 +83,7 @@ if test x$enable_boostrap = xyes; then
fi
AC_ARG_ENABLE(debug, AS_HELP_STRING([--enable-debug], [Enable debug build]), enable_debug=$enableval, enable_debug=no)
-if test "$enable_coverage" = "yes"; then
+if test "$enable_debug" = "yes"; then
VALAFLAGS="$VALAFLAGS -g"
CFLAGS="$CFLAGS -g -O0"
fi