diff options
author | deva <deva> | 2006-08-12 14:48:13 +0000 |
---|---|---|
committer | deva <deva> | 2006-08-12 14:48:13 +0000 |
commit | a145483e4f59ae76b28657cefd1b1e72fe5e4e2c (patch) | |
tree | 224e3f318ad624c54213d5e8ada7ccbb7936d38d | |
parent | 74aa6132310709742fa631a7791e4586aa3955cf (diff) |
Ultimately fixed the wierd debug configure flag!
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d17c7c9..cc4e9a7 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,7 @@ AC_DEFINE_UNQUOTED(ETC, "$prefix/etc/miav", [The path to the config files]) AC_DEFINE_UNQUOTED(PIXMAPS, "$prefix/share/pixmaps", [The path to the pixmap files]) AC_ARG_WITH(debug, [ --with-debug Build with debugging (-g -Wall -Werror)]) -if test x$with_debug != xyes && test -z "$DEBUG"; then +if test x$with_debug == xyes; then CXXFLAGS="$CXXFLAGS -g -Wall -Werror" dnl ===================== |