aboutsummaryrefslogtreecommitdiff
path: root/tools/build/module-install.pl
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2019-11-07 16:01:42 +0100
committerPatrick Spek <p.spek@tyil.nl>2019-11-07 16:01:42 +0100
commit01762e8554ef4548239d468ee9d43bd75f57bbaa (patch)
tree4fb4cb4b643e6cde792643622435150b44f02595 /tools/build/module-install.pl
parent4dd6d96c16adeee22e88c167f3b8deef683939e1 (diff)
Revert changes to module-install.pl
Linenoise fails to install for everyone, and this script may be the cause. To test this out, the easiest thing to do would be reverting this file, and see if things work fine now.
Diffstat (limited to 'tools/build/module-install.pl')
-rw-r--r--tools/build/module-install.pl4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/build/module-install.pl b/tools/build/module-install.pl
index 0bd4cee..9f7e038 100644
--- a/tools/build/module-install.pl
+++ b/tools/build/module-install.pl
@@ -14,7 +14,9 @@ while (<>) {
next if /^\s*(#|$)/;
my ($module) = /(\S+)/;
$exit ||= system $perl6bin, $zefbin,
- '--force', '--/test', 'install', "./modules$path_sep$module";
+ '--/build-depends', '--/test-depends', '--/depends',
+ '--/p6c', '--/metacpan', '--/cpan',
+ '--force', 'install', "./modules$path_sep$module";
}
exit $exit;