projects
/
openwrt
/
staging
/
jogo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bcf75ac
)
scripts/feeds: properly handle virtual packages as well, use the first available...
author
Felix Fietkau
<nbd@openwrt.org>
Mon, 4 Aug 2008 22:22:43 +0000
(22:22 +0000)
committer
Felix Fietkau
<nbd@openwrt.org>
Mon, 4 Aug 2008 22:22:43 +0000
(22:22 +0000)
SVN-Revision: 12103
scripts/metadata.pm
patch
|
blob
|
history
diff --git
a/scripts/metadata.pm
b/scripts/metadata.pm
index a220231f0d185071361c66ac227b84cac42c4fd4..fd18b18a29c039315f492cb938d392777f553071 100644
(file)
--- a/
scripts/metadata.pm
+++ b/
scripts/metadata.pm
@@
-76,7
+76,13
@@
sub parse_package_metadata($) {
/^Provides: \s*(.+)\s*$/ and do {
my @vpkg = split /\s+/, $1;
foreach my $vpkg (@vpkg) {
- $package{$vpkg} or $package{$vpkg} = { vdepends => [] };
+ $package{$vpkg} or $package{$vpkg} = {
+ name => $vpkg,
+ vdepends => [],
+ src => $src,
+ subdir => $subdir,
+ makefile => $makefile
+ };
push @{$package{$vpkg}->{vdepends}}, $pkg->{name};
}
};