X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=lttng-ust%2Flttng-ust-master.sh;h=e20fa0fe2d2a58f0c49b2151503fc84eb0e15ce6;hb=8a804acc7c9bfa48177a4a88d43d81cbf6ef0f18;hp=31a55c41bfda0f2af1ce5c5d15daf1c5277b5e1b;hpb=b091cfedf52652ec9f5b7b83d30053cc8ceb5acf;p=lttng-ci.git diff --git a/lttng-ust/lttng-ust-master.sh b/lttng-ust/lttng-ust-master.sh index 31a55c4..e20fa0f 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 @@ -99,6 +102,6 @@ make clean find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -if [ $build = "dist" ] then +if [ $build = "dist" ]; then rm -rf $BUILD_PATH fi