aboutsummaryrefslogtreecommitdiff
path: root/lib/actions/install.bash
diff options
context:
space:
mode:
Diffstat (limited to 'lib/actions/install.bash')
-rw-r--r--lib/actions/install.bash39
1 files changed, 31 insertions, 8 deletions
diff --git a/lib/actions/install.bash b/lib/actions/install.bash
index ef43c80..5b975e3 100644
--- a/lib/actions/install.bash
+++ b/lib/actions/install.bash
@@ -149,38 +149,61 @@ action_install_modules() {
}
build_moarvm() {
+ local logfile
+
+ logfile="$(tmpfile)"
+
info "Starting build on MoarVM"
build_prepare "$BASEDIR/src/moarvm-$VERSION/MoarVM-$VERSION" || return
- perl Configure.pl \
- "$@" \
+
+ info "Build log available at $logfile"
+
+ {
+ perl Configure.pl "$@" \
&& make \
&& make install \
+ > "$logfile" \
|| return
+ } > "$logfile" 2>&1
}
build_nqp() {
+ local logfile
+
+ logfile="$(tmpfile)"
+
info "Starting build on NQP"
build_prepare "$BASEDIR/src/nqp-$VERSION/nqp-$VERSION" || return
- perl Configure.pl \
- --backend="$RSTAR_BACKEND" \
- "$@" \
+
+ info "Build log available at $logfile"
+
+ {
+ perl Configure.pl --backend="$RSTAR_BACKEND" "$@" \
&& make \
&& make install \
|| return
+ } > "$logfile" 2>&1
}
build_rakudo() {
+ local logfile
+
+ logfile="$(tmpfile)"
+
info "Starting build on Rakudo"
build_prepare "$BASEDIR/src/rakudo-$VERSION/rakudo-$VERSION" || return
- perl Configure.pl \
- --backend="$RSTAR_BACKEND" \
- "$@" \
+
+ info "Build log available at $logfile"
+
+ {
+ perl Configure.pl --backend="$RSTAR_BACKEND" "$@" \
&& make \
&& make install \
|| return
+ } > "$logfile" 2>&1
}
build_prepare() {