add some more busybox patches from upstream
[openwrt.git] / scripts / config.pl
index a452537..dcebfe6 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;
                };
This page took 0.02241 seconds and 4 git commands to generate.