From: Yann E. MORIN" Date: Sun, 22 Jan 2012 22:58:25 +0000 (+0100) Subject: configure: chnage help string for disabling frontends X-Git-Tag: v3.3.0-0~38 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=eb0e466e9a01b5bf619a9b630dec4882c8c1a83d;p=kconfig-frontends 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" --- 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}])