commit | 028f2d651c046128feec491c2dd77ad33ad601cd | [log] [tgz] |
---|---|---|
author | Denis Vlasenko <vda.linux@googlemail.com> | Thu Aug 23 14:11:30 2007 +0000 |
committer | Denis Vlasenko <vda.linux@googlemail.com> | Thu Aug 23 14:11:30 2007 +0000 |
tree | 78bd10e01fd839d46b71143a7212905a9912fbb9 | |
parent | 6ee023cf629c83af8d10b383ab0780ec043f0785 [diff] |
build system: stop moaning about unset integer CONFIGs.
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 79bb4a3..4837f61 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c
@@ -222,7 +222,8 @@ sym->user.val = strdup(p); sym->flags &= ~SYMBOL_NEW; } else { - conf_warning("symbol value '%s' invalid for %s", p, sym->name); + if (p[0]) /* bbox */ + conf_warning("symbol value '%s' invalid for %s", p, sym->name); continue; } break;