aboutsummaryrefslogtreecommitdiff
path: root/tools/build
diff options
context:
space:
mode:
authorSteve Mynott <steve.mynott@gmail.com>2016-04-24 06:39:43 +0000
committerSteve Mynott <steve.mynott@gmail.com>2016-04-24 06:39:43 +0000
commit4f0d254e3dbad86152cf7232a12cf4d9a4e1e723 (patch)
tree232b27afb61421c8a9835ef5b8684a1efe644644 /tools/build
parentfd4d41f975423184310b6a44fe133478ff4c618f (diff)
add perl6 install path to panda bootstrap and module install
Diffstat (limited to 'tools/build')
-rw-r--r--tools/build/Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/build/Makefile.in b/tools/build/Makefile.in
index 6bb8d26..e3a9360 100644
--- a/tools/build/Makefile.in
+++ b/tools/build/Makefile.in
@@ -56,13 +56,13 @@ modules-install: @backend_modules_install@
modules-install-j: rakudo-install
@echo "== Installing modules for JVM"
- cd modules/panda && $(DESTDIR)$(PERL6_J_INSTALL) bootstrap.pl
- $(PERL) tools/build/module-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/panda-m $(MODULES)
+ cd modules/panda && PATH=$(STAR_BIN_DIR):$(PATH) $(DESTDIR)$(PERL6_J_INSTALL) bootstrap.pl
+ PATH=$(STAR_BIN_DIR):$(PATH) $(PERL) tools/build/module-install.pl $(PERL6_J_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/panda-m $(MODULES)
modules-install-m: rakudo-install
@echo "== Installing modules for MoarVM"
- cd modules/panda && $(DESTDIR)$(PERL6_M_INSTALL) bootstrap.pl
- $(PERL) tools/build/module-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/panda-m $(MODULES)
+ cd modules/panda && PATH=$(STAR_BIN_DIR):$(PATH) $(DESTDIR)$(PERL6_M_INSTALL) bootstrap.pl
+ PATH=$(STAR_BIN_DIR):$(PATH) $(PERL) tools/build/module-install.pl $(PERL6_M_INSTALL) $(DESTDIR)$(SITE_BIN_DIR)/panda-m $(MODULES)
modules-test: @backend_modules_test@
verbose-modules-test: @backend_modules_test@