diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-09-30 12:01:18 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-09-30 10:48:21 +0000 |
commit | 9595ed47315066b8a562d52c22e62a43bbe49bc9 (patch) | |
tree | 9bcf4c976f72f3487ae14b65cd778b92a0df7e13 | |
parent | 6a4d6825acf324c02198fa73838c1eeaf4fdffc7 (diff) | |
download | coreboot-9595ed47315066b8a562d52c22e62a43bbe49bc9.tar.xz |
kconfig: kconfig_warnings needs to be defined for all frontends
Change-Id: Iecefdd1e827e4eb8b4da573e4291850d6c47767f
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/11754
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Werner Zeh <werner.zeh@siemens.com>
-rw-r--r-- | util/kconfig/mconf.c | 2 | ||||
-rw-r--r-- | util/kconfig/nconf.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/util/kconfig/mconf.c b/util/kconfig/mconf.c index b4a08440af..7e5dc766f9 100644 --- a/util/kconfig/mconf.c +++ b/util/kconfig/mconf.c @@ -22,6 +22,8 @@ #include "lkc.h" #include "lxdialog/dialog.h" +int kconfig_warnings = 0; + static const char mconf_readme[] = N_( "Overview\n" "--------\n" diff --git a/util/kconfig/nconf.c b/util/kconfig/nconf.c index bc845fc6fc..f9944a64de 100644 --- a/util/kconfig/nconf.c +++ b/util/kconfig/nconf.c @@ -13,6 +13,8 @@ #include "nconf.h" #include <ctype.h> +int kconfig_warnings = 0; + static const char nconf_global_help[] = N_( "Help windows\n" "------------\n" |