build system: stop moaning about unset integer CONFIGs.

This commit is contained in:
Denis Vlasenko 2007-08-23 14:11:30 +00:00
parent 6ee023cf62
commit 028f2d651c

View File

@ -222,7 +222,8 @@ int conf_read_simple(const char *name)
sym->user.val = strdup(p); sym->user.val = strdup(p);
sym->flags &= ~SYMBOL_NEW; sym->flags &= ~SYMBOL_NEW;
} else { } 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; continue;
} }
break; break;