From 411c142f00ad2399455c8cacf5fa704b6d56a925 Mon Sep 17 00:00:00 2001 From: Ben Roberts Date: Mon, 24 Oct 2016 10:48:36 +0100 Subject: [PATCH] Fixup perlisms --- builder | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/builder b/builder index 54201ae..d8f6c13 100755 --- a/builder +++ b/builder @@ -412,7 +412,9 @@ if ($use_equo) { say "Devkit version:"; system("equo s -vq app-misc/sabayon-devkit"); - my @installed_enman_repos = split(/\n/, chomp(system("enman list --installed -q"))); + my $enman_list_output = qx|enman list --installed -q|; + chomp($enman_list_output); + my @installed_enman_repos = split(/\n/, $enman_list_output); if ( $enman_repositories and $enman_repositories ne "" ) { my @enman_toadd = split( / /, $enman_repositories );