aboutsummaryrefslogtreecommitdiff
path: root/lib/actions/install.bash
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-03-26 12:58:25 +0100
committerPatrick Spek <p.spek@tyil.nl>2020-03-26 12:58:25 +0100
commit3ef3c08fa8f60c38916cd0db61732d197d6c3cda (patch)
treea772743329d7595ddd21c4d0a31e7946c2ba107a /lib/actions/install.bash
parenta59a1d377fcb97557ab01b72d383dbf57ea74536 (diff)
Move dist files around
Diffstat (limited to 'lib/actions/install.bash')
-rw-r--r--lib/actions/install.bash8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/actions/install.bash b/lib/actions/install.bash
index 8f6993b..19cac9a 100644
--- a/lib/actions/install.bash
+++ b/lib/actions/install.bash
@@ -59,7 +59,7 @@ action() {
do
info "Installing $module"
- install_raku_module "$BASEDIR/dist/src/modules/$module" \
+ install_raku_module "$BASEDIR/src/rakudo-star-modules/$module" \
&& continue
failed_modules+=("$module")
@@ -92,7 +92,7 @@ action() {
build_moarvm() {
info "Starting build on MoarVM"
- build_prepare "$BASEDIR/dist/src/core/moarvm-$VERSION" || return
+ build_prepare "$BASEDIR/src/moarvm-$VERSION" || return
perl Configure.pl \
"$@" \
&& make \
@@ -103,7 +103,7 @@ build_moarvm() {
build_nqp() {
info "Starting build on NQP"
- build_prepare "$BASEDIR/dist/src/core/nqp-$VERSION" || return
+ build_prepare "$BASEDIR/src/nqp-$VERSION" || return
perl Configure.pl \
--backend="$RSTAR_BACKEND" \
"$@" \
@@ -115,7 +115,7 @@ build_nqp() {
build_rakudo() {
info "Starting build on Rakudo"
- build_prepare "$BASEDIR/dist/src/core/rakudo-$VERSION" || return
+ build_prepare "$BASEDIR/src/rakudo-$VERSION" || return
perl Configure.pl \
--backend="$RSTAR_BACKEND" \
"$@" \