X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=scripts%2Fconfig.pl;h=2f4a968ea73a9a80c83bbc22185b8b10e67a595d;hb=f203cd4d6d968d81d98c76ef992ae91c17552b03;hp=dcebfe62c1532c0526bf24f561aed51c67720bc3;hpb=0a87b5ffbf4b00e4d280aa85b4e4051603027dab;p=openwrt-10.03%2F.git 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";