From eb0e466e9a01b5bf619a9b630dec4882c8c1a83d Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Sun, 22 Jan 2012 23:58:25 +0100 Subject: [PATCH] configure: chnage help string for disabling frontends As frontends are enabled by default, let the help string specify the --disable-XXX variant of the option, so that autocomplete always suggests it. Signed-off-by: "Yann E. MORIN" --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index 2827968..7a747b7 100644 --- a/configure.ac +++ b/configure.ac @@ -45,31 +45,31 @@ AC_CHECK_FUNCS([ gettimeofday mkdir regcomp setlocale uname ]) AC_ARG_ENABLE( [conf], [AS_HELP_STRING( - [--enable-conf], + [--disable-conf], [conf, the stdin-based frontend (default=yes)])]) AC_SUBST([enable_conf], [${enable_conf:-yes}]) AC_ARG_ENABLE( [mconf], [AS_HELP_STRING( - [--enable-mconf], + [--disable-mconf], [mconf, the traditional ncurses-based frontend (default=yes)])]) AC_SUBST([enable_mconf], [${enable_mconf:-yes}]) AC_ARG_ENABLE( [nconf], [AS_HELP_STRING( - [--enable-nconf], + [--disable-nconf], [nconf, the modern ncurses-based frontend (default=yes)])]) AC_SUBST([enable_nconf], [${enable_nconf:-yes}]) AC_ARG_ENABLE( [gconf], [AS_HELP_STRING( - [--enable-gconf], + [--disable-gconf], [gconf, the GTK-based frontend (default=yes)])]) AC_SUBST([enable_gconf], [${enable_gconf:-yes}]) AC_ARG_ENABLE( [qconf], [AS_HELP_STRING( - [--enable-qconf], + [--disable-qconf], [qconf, the QT-based frontend (default=yes)])]) AC_SUBST([enable_qconf], [${enable_qconf:-yes}]) -- 2.39.5