X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/ed01170dfed7c661529740f0e4756aa3f633d7bb..3b20aec50f6ec53d9e532d6718924f01305e8004:/scripts/config.pl diff --git a/scripts/config.pl b/scripts/config.pl index a45253729..2f4a968ea 100755 --- a/scripts/config.pl +++ b/scripts/config.pl @@ -18,12 +18,12 @@ sub load_config($) { open FILE, "$file" or die "can't open file"; while () { chomp; - /^CONFIG_(.+)=(.+)/ and do { + /^CONFIG_(.+?)=(.+)/ and do { $config{$1} = $2; next; }; - /^# CONFIG_(.+) is not set/ and do { - $config{$1} = -1; + /^# CONFIG_(.+?) is not set/ and do { + $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";