projects
/
openwrt
/
staging
/
ansuel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
af9b87b
)
fix a small bug in config.pl that tends to mess up kernel cmdlines
author
Felix Fietkau
<nbd@openwrt.org>
Fri, 26 Jan 2007 20:26:49 +0000
(20:26 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Fri, 26 Jan 2007 20:26:49 +0000
(20:26 +0000)
SVN-Revision: 6212
scripts/config.pl
patch
|
blob
|
history
diff --git
a/scripts/config.pl
b/scripts/config.pl
index a45253729cc48fa4d8cfb8c00ea7dcd9df36b0fa..dcebfe62c1532c0526bf24f561aed51c67720bc3 100755
(executable)
--- 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;
};