add out-of-tree build to babeltrace stable 1.2
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Wed, 28 Jan 2015 16:50:22 +0000 (11:50 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Wed, 28 Jan 2015 16:50:22 +0000 (11:50 -0500)
babeltrace/babeltrace-master.sh
babeltrace/babeltrace-stable-1.2.sh

index 99417a2701a183b3cad0375773a2e8f207f6928e..b37c4decbf420a9a9a4780537ab95ff1a3e7fca0 100755 (executable)
@@ -67,7 +67,7 @@ case "$build" in
                ;;
 esac
 
-make V=1
+make
 make install
 
 rm -rf $WORKSPACE/tap
index 8391abe571a6f9f9dcda91a3e3057cb2995819eb..b37c4decbf420a9a9a4780537ab95ff1a3e7fca0 100755 (executable)
@@ -26,7 +26,46 @@ python_bindings)
     ;;
 esac
 
-./configure --prefix=$PREFIX $CONF_OPTS
+# Build type
+# oot : out-of-tree build
+# dist: build via make dist
+# *   : normal tree build
+#
+# Make sure to move to the build_path and configure
+# before continuing
+
+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
+               ./configure
+               make dist
+
+               mkdir -p $BUILD_PATH
+               cp *.tar.* $BUILD_PATH/
+               cd $BUILD_PATH
+
+               # Ignore level 1 of tar
+               tar xvf *.tar.* --strip 1
+
+               $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS
+               ;;
+       *)
+               BUILD_PATH=$WORKSPACE
+               echo "Standard tree build"
+               $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS
+               ;;
+esac
 
 make
 make install
@@ -34,10 +73,10 @@ make install
 rm -rf $WORKSPACE/tap
 mkdir -p $WORKSPACE/tap
 
-cd $WORKSPACE/tests
+cd $BUILD_PATH/tests
 
 # Run make check tests
-prove --merge --exec '' - < $WORKSPACE/tests/tests --archive $WORKSPACE/tap/ || true
+prove --merge --exec '' - < $BUILD_PATH/tests/tests --archive $WORKSPACE/tap/ || true
 
 # TAP plugin is having a hard time with .yml files.
 rm -f $WORKSPACE/tap/meta.yml
@@ -51,3 +90,7 @@ make clean
 find $WORKSPACE/build/bin -executable -type f -exec chrpath --delete {} \;
 find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \;
 find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \;
+
+if [ $build = "dist" ]; then
+       rm -rf $BUILD_PATH
+fi
This page took 0.024881 seconds and 4 git commands to generate.