From f2fe7d669cc29000553f11a77013d28d4ce57ec3 Mon Sep 17 00:00:00 2001 From: Mason James Date: Tue, 27 Oct 2020 06:21:50 +1300 Subject: [PATCH] Bug 25898: Fix indirect object notation in debian/list-deps There's a Parallel::ForkManager call in debian/list-deps that doesn't follow the guidelines regarding indirect object notation. Signed-off-by: Tomas Cohen Arazi Signed-off-by: David Nind https://bugs.koha-community.org/show_bug.cgi?id=20985 --- debian/list-deps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/list-deps b/debian/list-deps index 888b5456e9..83a4053217 100755 --- a/debian/list-deps +++ b/debian/list-deps @@ -45,7 +45,7 @@ my %ignore = ( my $prefix = "^/usr/((lib|share)/perl5|(lib|share)/perl/[0-9.]+|(lib|share)/.*-linux-gnu.*/perl/[0-9.]+|(lib|share)/.*-linux-gnu.*/perl5/[0-9.]+)"; -my $pm = Parallel::ForkManager( Sys::CPU::cpu_count() )->new; +my $pm = Parallel::ForkManager->new( Sys::CPU::cpu_count() ); my $modules = C4::Installer::PerlModules->new(); my $prereqs = $modules->prereqs; -- 2.11.0