1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-11-18 14:47:46 +01:00

Fixed dependency handling for feeds

SVN-Revision: 12615
This commit is contained in:
Steven Barth 2008-09-16 20:25:36 +00:00
parent efb4cebbc6
commit 551bee5fa6

@ -286,7 +286,7 @@ sub install_package {
};
# install all dependencies
foreach my $vpkg (@{$srcpackage{$src}}) {
foreach my $vpkg (@{$srcpackage{$src}}, $pkg) {
foreach my $dep (@{$vpkg->{depends}}, @{$vpkg->{builddepends}}) {
next if $dep =~ /@/;
$dep =~ s/^\+//;