author | Michael Krelin <hacker@klever.net> | 2009-04-05 13:52:57 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2009-04-05 13:52:57 (UTC) |
commit | 5b0b3555099d53bfed7b6174db4db1b35034aee9 (patch) (side-by-side diff) | |
tree | 8aa20877368092665f0c028e4a1b0a6133479585 | |
parent | 870b9eb4279337ce3d1415c62082247fb977ce4c (diff) | |
download | iii-5b0b3555099d53bfed7b6174db4db1b35034aee9.zip iii-5b0b3555099d53bfed7b6174db4db1b35034aee9.tar.gz iii-5b0b3555099d53bfed7b6174db4db1b35034aee9.tar.bz2 |
fixed typo
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c3bb8ab..2e66fc4 100644 --- a/configure.ac +++ b/configure.ac @@ -43,25 +43,25 @@ if $nitpick ; then -Wunsafe-loop-optimizations -Wconversion -Wmissing-format-attribute \ -Wredundant-decls -ansi -Wlogical-op -Wmissing-noreturn" C_NITPICK="$CPP_NITPICK" CXX_NITPICK="$C_NITPICK" CPPFLAGS="$CPPFLAGS $CPP_NITPICK" CFLAGS="$CFLAGS $C_NITPICK" CXXFLAGS="$CXXFLAGS $CXX_NITPICK" fi ndebug=true AC_ARG_ENABLE([debug], - AC_HELP_STRING([--enable-debug],[enable debugginc code]), + AC_HELP_STRING([--enable-debug],[enable debugging code]), [ test "$enableval" = "no" || ndebug=false ] ) if $ndebug ; then CPPFLAGS_DEBUG="-DNDEBUG" else CPPFLAGS_DEBUG="-DDEBUG" fi AC_SUBST([CPPFLAGS_DEBUG]) AC_CONFIG_FILES([ Makefile src/Makefile |