From eb75de1917c5a3fc0c68b87cf20d2ea1e748ed9e Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Tue, 28 Nov 2006 17:06:06 +0100 Subject: [PATCH] USE AC_HELP_STRING Make use of AC_HELP_STRING to properly format the output of ./configure --- configure.in | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index c9546e8..bc43cfc 100644 --- a/configure.in +++ b/configure.in @@ -290,8 +290,9 @@ if test "x$enable_file_monitoring" = "xauto"; then else inotify_header="sys/inotify.h" fi - AC_ARG_ENABLE(debug, [ --enable-inotify-debug turn on inotify debugging], - [AC_DEFINE(LIBINOTIFY_DEBUG,, [is debugging enabled?])],) + AC_ARG_ENABLE(debug, + AC_HELP_STRING([--enable-inotify-debug], [turn on inotify debugging]), + [AC_DEFINE(LIBINOTIFY_DEBUG,, [is debugging enabled?])],) elif test "$fam_support" = "yes"; then if test "$fam_type" = "gamin"; then primary_backend="gamin" -- 1.4.4.1