aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Logan <nlogan@gmail.com>2016-11-29 17:06:36 -0500
committerSteve Mynott <steve.mynott@gmail.com>2017-01-21 11:49:43 +0000
commit92cd359977475ceaa007e8e04b69de0d58fd6f28 (patch)
treeafc574de55b063d4b5ab063e44ff10ef437a7861
parent6bc77091dcfb0414f72fe4ccb390d2dea4243c2e (diff)
Skip [build&test]-depends
-rw-r--r--tools/build/module-install.pl8
1 files 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;