]> git.sur5r.net Git - kconfig-frontends/commitdiff
configure: chnage help string for disabling frontends
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun, 22 Jan 2012 22:58:25 +0000 (23:58 +0100)
committerYann E. MORIN" <yann.morin.1998@free.fr>
Sun, 22 Jan 2012 22:58:25 +0000 (23:58 +0100)
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" <yann.morin.1998@anciens.enib.fr>
configure.ac

index 2827968b891fcbb07dc21bba083366f01e808af1..7a747b70d61e18e237f173c8533f4a00cf9dd140 100644 (file)
@@ -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}])