From 226eb20032baac7c4bda074e0d16b741ecbf568a Mon Sep 17 00:00:00 2001 From: Tobias Leich Date: Wed, 27 Jan 2016 20:45:04 +0100 Subject: revert using --bindir when installing panda We can install panda and the binaries of the Star dist into install/bin, though when the user later installs binaries or updates panda, these would go into install/share/perl6/site/bin by default. Since there is currently no sane way to prevent that, we just install non-core stuff info [...]/site/bin, and the user will have to add two paths to PATH. --- tools/build/module-install.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tools/build/module-install.pl') diff --git a/tools/build/module-install.pl b/tools/build/module-install.pl index 4caacb7..8af22e4 100644 --- a/tools/build/module-install.pl +++ b/tools/build/module-install.pl @@ -4,14 +4,13 @@ use warnings; use strict; my $perl6bin = shift @ARGV; my $pandabin = shift @ARGV; -my $bindir = shift @ARGV; my $exit = 0; while (<>) { next if /^\s*(#|$)/; my ($module) = /(\S+)/; - $exit ||= system $perl6bin, $pandabin, '--force', "--bin-prefix=$bindir", "install", "modules/$module"; + $exit ||= system $perl6bin, $pandabin, '--force', "install", "modules/$module"; } exit $exit; -- cgit v1.1