Format: add echo for build tree type
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 27 Jan 2015 21:25:15 +0000 (16:25 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 27 Jan 2015 21:25:15 +0000 (16:25 -0500)
lttng-ust/lttng-ust-master.sh

index 31a55c41bfda0f2af1ce5c5d15daf1c5277b5e1b..be2f31e7da51da382098e1bd154f0d5ccbd3c621 100755 (executable)
@@ -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
This page took 0.024045 seconds and 4 git commands to generate.