From: Yann E. MORIN" Date: Tue, 14 Feb 2012 22:40:24 +0000 (+0100) Subject: configure: enable all frontends if --enable-frontends has no list X-Git-Tag: v3.3.0-0~23 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=91bdc37f5337aa9a8bda5e9efd13ee27fea34e27;p=kconfig-frontends configure: enable all frontends if --enable-frontends has no list If the user passes '--enable-frontends' without a list of frontends to enable, interpret this as enabling all frontends. Note, this is different from '--enable-frontends=', where the list exists, but is empty. Signed-off-by: "Yann E. MORIN" --- diff --git a/configure.ac b/configure.ac index 903487a..b8d8894 100644 --- a/configure.ac +++ b/configure.ac @@ -102,6 +102,7 @@ AC_ARG_ENABLE( [for f in conf mconf nconf gconf qconf; do AS_CASE( ["$enableval"], + [yes], [eval enable_$f=yes], ["$f"], [eval enable_$f=yes], ["$f",*], [eval enable_$f=yes], [*,"$f"], [eval enable_$f=yes],