1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-11-27 15:27:33 +02:00

Fixed dependency handling for feeds

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@12615 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
cyrus 2008-09-16 20:25:36 +00:00
parent e81a77ae5d
commit dda76453d2

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