From: Nicolas Thill Date: Sat, 12 Apr 2008 09:37:44 +0000 (+0000) Subject: install build-depends packages as well X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4e319c572fcb770c5775a7e503812540f81df143;p=librecmc%2Flibrecmc.git install build-depends packages as well SVN-Revision: 10793 --- diff --git a/scripts/feeds b/scripts/feeds index afb8fff298..2b50d5c1a5 100755 --- a/scripts/feeds +++ b/scripts/feeds @@ -265,7 +265,7 @@ sub install_package { $installed{$src} and return 0; # install all dependencies - foreach my $dep (@{$pkg->{depends}}) { + foreach my $dep (@{$pkg->{depends}}, @{$pkg->{builddepends}}) { next if $dep =~ /@/; $dep =~ s/^\+//; install_package($feed, $dep) == 0 or $ret = 1;