From 2f7dc60beb16f48341845eb820ce672cce47041e Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Tue, 16 Jan 2018 17:38:06 +0100 Subject: configure: Fix help text regarding --enable-debug Debugging symbols are enabled by default, so list '--disable-debug' in help output rather than '--enable-debug'. This way it is also consistent with the parameter's description. Signed-off-by: Phil Sutter Signed-off-by: Pablo Neira Ayuso --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 769115be..83f5a061 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ AC_DEFINE([_GNU_SOURCE], [], [Enable various GNU extensions]) AC_DEFINE([_STDC_FORMAT_MACROS], [], [printf-style format macros]) AC_ARG_ENABLE([debug], - AS_HELP_STRING([--enable-debug], [Disable debugging symbols]), + AS_HELP_STRING([--disable-debug], [Disable debugging symbols]), AS_IF([test "x$enable_debug" = "xno"], [with_debug=no], [with_debug=yes]), [with_debug=yes]) AC_SUBST(with_debug) -- cgit v1.2.3