[goobox] fixed syntax error in configure.in
- From: Paolo Bacchilega <paobac src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [goobox] fixed syntax error in configure.in
- Date: Sun, 3 Jun 2012 19:51:02 +0000 (UTC)
commit 84a5fea334513039cf04e3adc38782a80a269417
Author: Paolo Bacchilega <paobac src gnome org>
Date: Sat Jun 2 21:25:53 2012 +0200
fixed syntax error in configure.in
configure.ac | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 3c5e85c..0a31605 100644
--- a/configure.ac
+++ b/configure.ac
@@ -47,16 +47,16 @@ AC_PATH_PROG(GLIB_MKENUMS, glib-mkenums)
dnl ===========================================================================
AC_ARG_ENABLE(debug,
- AS_HELP_STRING([--enable-debug], [enable compilation of debugging messages]),
- case "${enableval}" in
+ AS_HELP_STRING([--enable-debug], [enable compilation of debugging messages]),
+ [case "${enableval}" in
yes) ENABLE_DEBUG=yes ;;
- no) ENABLE_DEBUG=no ;;
- *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
- esac],
- [ENABLE_DEBUG=no])
+ no) ENABLE_DEBUG=no ;;
+ *) AC_MSG_ERROR([bad value ${enableval} for --enable-debug]) ;;
+ esac],
+ [ENABLE_DEBUG=no])
if test x$ENABLE_DEBUG = xyes; then
- AC_DEFINE(DEBUG, 1, [enable compilation of debugging messages])
- CFLAGS="$CFLAGS -g -O0 -DDEBUG"
+ AC_DEFINE(DEBUG, 1, [enable compilation of debugging messages])
+ CFLAGS="$CFLAGS -g -O0 -DDEBUG"
fi
dnl ===========================================================================
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]