diff options
-rw-r--r-- | scripts/kconfig/confdata.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 79bb4a38e..4837f61d9 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
@@ -222,7 +222,8 @@ int conf_read_simple(const char *name) | |||
222 | sym->user.val = strdup(p); | 222 | sym->user.val = strdup(p); |
223 | sym->flags &= ~SYMBOL_NEW; | 223 | sym->flags &= ~SYMBOL_NEW; |
224 | } else { | 224 | } else { |
225 | conf_warning("symbol value '%s' invalid for %s", p, sym->name); | 225 | if (p[0]) /* bbox */ |
226 | conf_warning("symbol value '%s' invalid for %s", p, sym->name); | ||
226 | continue; | 227 | continue; |
227 | } | 228 | } |
228 | break; | 229 | break; |