From: Felix Fietkau Date: Mon, 4 Aug 2008 22:22:43 +0000 (+0000) Subject: scripts/feeds: properly handle virtual packages as well, use the first available... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=b2ed6ea7eb6035d8b3a5fea0d99e3bf8c962fa91 scripts/feeds: properly handle virtual packages as well, use the first available provider by default SVN-Revision: 12103 --- diff --git a/scripts/metadata.pm b/scripts/metadata.pm index a220231f0d..fd18b18a29 100644 --- 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}; } };