X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;ds=sidebyside;f=scripts%2Fconfig.pl;h=dcebfe62c1532c0526bf24f561aed51c67720bc3;hb=e6a49e7bd0849e0d5b281a5e3b0e661e26973704;hp=a45253729cc48fa4d8cfb8c00ea7dcd9df36b0fa;hpb=ed01170dfed7c661529740f0e4756aa3f633d7bb;p=openwrt-10.03%2F.git diff --git a/scripts/config.pl b/scripts/config.pl index a45253729..dcebfe62c 100755 --- a/scripts/config.pl +++ b/scripts/config.pl @@ -18,11 +18,11 @@ 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_(.+?) is not set/ and do { $config{$1} = -1; next; };