From 92cd359977475ceaa007e8e04b69de0d58fd6f28 Mon Sep 17 00:00:00 2001 From: Nick Logan Date: Tue, 29 Nov 2016 17:06:36 -0500 Subject: Skip [build&test]-depends --- tools/build/module-install.pl | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tools/build/module-install.pl b/tools/build/module-install.pl index e778d9f..806065e 100644 --- a/tools/build/module-install.pl +++ b/tools/build/module-install.pl @@ -2,8 +2,8 @@ use warnings; use strict; -my $perl6bin = shift @ARGV; -my $pandabin = shift @ARGV; +my $perl6bin = shift @ARGV; +my $zefbin = shift @ARGV; my $exit = 0; @@ -13,7 +13,9 @@ $path_sep = "\\" if ( $^O eq 'MSWin32' ); while (<>) { next if /^\s*(#|$)/; my ($module) = /(\S+)/; - $exit ||= system $perl6bin, $pandabin, '--force', '--/depends', "install", "./modules$path_sep$module"; + $exit ||= system $perl6bin, $zefbin, + '--/build-depends', '--/test-depends', '--/depends', + '--force', 'install', "./modules$path_sep$module"; } exit $exit; -- cgit v1.1