From 371b695fa77dc68877d4d1384acbcbef9949ec8a Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 27 Jan 2015 16:25:15 -0500 Subject: [PATCH] Format: add echo for build tree type --- lttng-ust/lttng-ust-master.sh | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.34.1