Explorar el Código

fix a small bug in config.pl that tends to mess up kernel cmdlines

SVN-Revision: 6212
Felix Fietkau hace 19 años
padre
commit
048b3e684f
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      scripts/config.pl

+ 2 - 2
scripts/config.pl

@@ -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;
 		};