install build-depends packages as well
SVN-Revision: 10793
This commit is contained in:
parent
a8761e71b7
commit
4e319c572f
1 changed files with 1 additions and 1 deletions
|
@ -265,7 +265,7 @@ sub install_package {
|
||||||
$installed{$src} and return 0;
|
$installed{$src} and return 0;
|
||||||
|
|
||||||
# install all dependencies
|
# install all dependencies
|
||||||
foreach my $dep (@{$pkg->{depends}}) {
|
foreach my $dep (@{$pkg->{depends}}, @{$pkg->{builddepends}}) {
|
||||||
next if $dep =~ /@/;
|
next if $dep =~ /@/;
|
||||||
$dep =~ s/^\+//;
|
$dep =~ s/^\+//;
|
||||||
install_package($feed, $dep) == 0 or $ret = 1;
|
install_package($feed, $dep) == 0 or $ret = 1;
|
||||||
|
|
Loading…
Reference in a new issue