projects
/
openwrt.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f3b481
)
fix a package metadata parsing bug
author
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 3 Mar 2009 14:03:37 +0000
(14:03 +0000)
committer
nbd
<nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Tue, 3 Mar 2009 14:03:37 +0000
(14:03 +0000)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14735
3c298f89
-4303-0410-b956-
a3cf2f4a3e73
scripts/metadata.pm
patch
|
blob
|
history
diff --git
a/scripts/metadata.pm
b/scripts/metadata.pm
index
9774680
..
defa7b9
100644
(file)
--- a/
scripts/metadata.pm
+++ b/
scripts/metadata.pm
@@
-105,7
+105,7
@@
sub parse_package_metadata($) {
$type =~ /ipkg/ and $pkg->{tristate} = 1;
}
};
- /^Config:
\s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t");
+ /^Config:\s*(.*)\s*$/ and $pkg->{config} = "$1\n".get_multiline(*FILE, "\t");
/^Prereq-Check:/ and $pkg->{prereq} = 1;
/^Preconfig:\s*(.+)\s*$/ and do {
my $pkgname = $pkg->{name};
This page took
0.023158 seconds
and
4
git commands to generate.