aboutsummaryrefslogtreecommitdiff
path: root/lib/actions/install.bash
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2020-07-27 23:23:41 +0200
committerPatrick Spek <p.spek@tyil.nl>2020-11-20 20:42:32 +0100
commit962db0ea9e248e01d46f6ae58d4dfc621b7d5a96 (patch)
tree8bf43b0ec7a0d2b094b2db607f419b1716f77871 /lib/actions/install.bash
parent05efd6e6854009533faeecbf590190470f04441b (diff)
Remove --strip-components from tar during fetch
--strip-components is only available in GNU tar, making it unreliable in OpenBSD environments.
Diffstat (limited to 'lib/actions/install.bash')
-rw-r--r--lib/actions/install.bash6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/actions/install.bash b/lib/actions/install.bash
index 1889657..2febdd5 100644
--- a/lib/actions/install.bash
+++ b/lib/actions/install.bash
@@ -139,7 +139,7 @@ action_install_modules() {
build_moarvm() {
info "Starting build on MoarVM"
- build_prepare "$BASEDIR/src/moarvm-$VERSION" || return
+ build_prepare "$BASEDIR/src/moarvm-$VERSION/MoarVM-$VERSION" || return
perl Configure.pl \
"$@" \
&& make \
@@ -150,7 +150,7 @@ build_moarvm() {
build_nqp() {
info "Starting build on NQP"
- build_prepare "$BASEDIR/src/nqp-$VERSION" || return
+ build_prepare "$BASEDIR/src/nqp-$VERSION/nqp-$VERSION" || return
perl Configure.pl \
--backend="$RSTAR_BACKEND" \
"$@" \
@@ -162,7 +162,7 @@ build_nqp() {
build_rakudo() {
info "Starting build on Rakudo"
- build_prepare "$BASEDIR/src/rakudo-$VERSION" || return
+ build_prepare "$BASEDIR/src/rakudo-$VERSION/rakudo-$VERSION" || return
perl Configure.pl \
--backend="$RSTAR_BACKEND" \
"$@" \