From: Jonathan Rajotte Date: Tue, 27 Jan 2015 21:25:15 +0000 (-0500) Subject: Format: add echo for build tree type X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=371b695fa77dc68877d4d1384acbcbef9949ec8a;p=lttng-ci.git Format: add echo for build tree type --- diff --git a/lttng-ust/lttng-ust-master.sh b/lttng-ust/lttng-ust-master.sh index 31a55c4..be2f31e 100755 --- a/lttng-ust/lttng-ust-master.sh +++ b/lttng-ust/lttng-ust-master.sh @@ -48,12 +48,14 @@ esac BUILD_PATH=$WORKSPACE case "$build" in oot) + echo "Out of tree build" BUILD_PATH=$WORKSPACE/oot mkdir -p $BUILD_PATH cd $BUILD_PATH $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS ;; dist) + echo "Distribution out of tree build" BUILD_PATH=`mktemp -d` # Initial configure and generate tarball @@ -71,6 +73,7 @@ case "$build" in ;; *) BUILD_PATH=$WORKSPACE + echo "Standard tree build" $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS ;; esac