diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-01-26 20:26:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-01-26 20:26:49 +0000 |
commit | c1b874e44af89be269db385679bec0eaea7cda00 (patch) | |
tree | 5d6d3ed637f6cae0cc3958ce0b8b6ea172d9dc42 | |
parent | 72aa4ea3b6a5a5603391d00b73b099a78cc06911 (diff) | |
download | upstream-c1b874e44af89be269db385679bec0eaea7cda00.tar.gz upstream-c1b874e44af89be269db385679bec0eaea7cda00.tar.bz2 upstream-c1b874e44af89be269db385679bec0eaea7cda00.zip |
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
-rwxr-xr-x | scripts/config.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/config.pl b/scripts/config.pl index a45253729c..dcebfe62c1 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 (<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; }; |