projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Add macosx fix from #1407
[openwrt.git]
/
scripts
/
config.pl
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;
open FILE, "$file" or die "can't open file";
while (<FILE>) {
chomp;
- /^CONFIG_(.+)=(.+)/ and do {
+ /^CONFIG_(.+
?
)=(.+)/ and do {
$config{$1} = $2;
next;
};
$config{$1} = $2;
next;
};
- /^# CONFIG_(.+) is not set/ and do {
+ /^# CONFIG_(.+
?
) is not set/ and do {
$config{$1} = -1;
next;
};
$config{$1} = -1;
next;
};
This page took
0.019913 seconds
and
4
git commands to generate.