projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1406fcd
)
fix a small bug in config.pl that tends to mess up kernel cmdlines
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 26 Jan 2007 20:26:49 +0000
(20:26 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Fri, 26 Jan 2007 20:26:49 +0000
(20:26 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6212
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/config.pl
patch
|
blob
|
history
diff --git
a/scripts/config.pl
b/scripts/config.pl
index
a452537
..
dcebfe6
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;
};
This page took
0.019949 seconds
and
4
git commands to generate.