fix a small bug in the config merge/split (fixes buildbot error on ixp4xx)

SVN-Revision: 6427
This commit is contained in:
Felix Fietkau
2007-02-28 13:00:26 +00:00
parent f5616580b3
commit 74f71f0739
2 changed files with 3 additions and 4 deletions

View File

@@ -23,7 +23,7 @@ sub load_config($) {
next;
};
/^# CONFIG_(.+?) is not set/ and do {
$config{$1} = -1;
$config{$1} = "#undef";
next;
};
/^#/ and next;
@@ -91,7 +91,7 @@ sub config_sub($$) {
sub print_cfgline($$) {
my $name = shift;
my $val = shift;
if ($val eq '-1') {
if ($val eq '#undef') {
print "# CONFIG_$name is not set\n";
} else {
print "CONFIG_$name=$val\n";