mirror of
https://git.busybox.net/busybox
synced 2026-01-26 16:17:50 +00:00
build system: stop moaning about unset integer CONFIGs.
This commit is contained in:
parent
6ee023cf62
commit
028f2d651c
1 changed files with 2 additions and 1 deletions
|
|
@ -222,7 +222,8 @@ int conf_read_simple(const char *name)
|
|||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue