From 031becc0e25503b7082675c7d30c00cdc2fa7a74 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Thu, 9 Jul 2015 21:01:10 +0200 Subject: [PATCH] pakfire: Resolve dependencies for upgraded packages When updating more than one package, only new dependencies for the first one are resolved. The rest was ignored. This patch fixes that. Signed-off-by: Michael Tremer --- src/pakfire/lib/functions.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pakfire/lib/functions.pl b/src/pakfire/lib/functions.pl index d2f77fa8f1..96f8d144a9 100644 --- a/src/pakfire/lib/functions.pl +++ b/src/pakfire/lib/functions.pl @@ -591,7 +591,7 @@ sub resolvedeps { } sub resolvedeps_recursive { - my @packages = shift; + my @packages = @_; my @result = (); foreach my $pkg (@packages) { -- 2.39.2