Fixed dependency handling for feeds

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12615 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Steven Barth 2008-09-16 20:25:36 +00:00
parent 7f56337ca4
commit d85c243ab1
1 changed files with 1 additions and 1 deletions

View File

@ -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/^\+//;