From 0a87b5ffbf4b00e4d280aa85b4e4051603027dab Mon Sep 17 00:00:00 2001 From: nbd Date: Fri, 26 Jan 2007 20:26:49 +0000 Subject: fix a small bug in config.pl that tends to mess up kernel cmdlines git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6212 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/config.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; -- cgit v1.2.3