add missing dependencies (#1244)
[openwrt-10.03/.git] / scripts / config.pl
index a45253729cc48fa4d8cfb8c00ea7dcd9df36b0fa..dcebfe62c1532c0526bf24f561aed51c67720bc3 100755 (executable)
@@ -18,11 +18,11 @@ sub load_config($) {
        open FILE, "$file" or die "can't open file";
        while (<FILE>) {
                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;
                };