diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-02-28 13:00:26 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-02-28 13:00:26 +0000 |
commit | f3940a66750b2edb681ac351d93c8ebdd18dc0aa (patch) | |
tree | 502a1e9aa4755778672eda53f403dcda155ede9d /scripts | |
parent | 89be048fff6838d52c6853f27c74eaf92cf0f682 (diff) |
fix a small bug in the config merge/split (fixes buildbot error on ixp4xx)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6427 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config.pl b/scripts/config.pl index dcebfe62c..2f4a968ea 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"; |