summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-02-28 13:00:26 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-02-28 13:00:26 +0000
commit74f71f073998a53fb09409d59df65d1c03e94001 (patch)
tree94e4bc8b94a7256dc263f9f5029531306a038e98 /scripts
parentf5616580b3dd86d8f6d32636e4418f0fe81fe3f3 (diff)
downloadmaster-31e0f0ae-74f71f073998a53fb09409d59df65d1c03e94001.tar.gz
master-31e0f0ae-74f71f073998a53fb09409d59df65d1c03e94001.tar.bz2
master-31e0f0ae-74f71f073998a53fb09409d59df65d1c03e94001.zip
fix a small bug in the config merge/split (fixes buildbot error on ixp4xx)
SVN-Revision: 6427
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/config.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config.pl b/scripts/config.pl
index dcebfe62c1..2f4a968ea7 100755
--- a/scripts/config.pl
+++ b/scripts/config.pl
@@ -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";