From: Jonathan Rajotte Date: Tue, 27 Jan 2015 22:06:17 +0000 (-0500) Subject: Fix: error in copy paste :( X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=8a804acc7c9bfa48177a4a88d43d81cbf6ef0f18;p=lttng-ci.git Fix: error in copy paste :( --- diff --git a/userspace-rcu/liburcu-master.sh b/userspace-rcu/liburcu-master.sh index 20da6f9..21bee61 100755 --- a/userspace-rcu/liburcu-master.sh +++ b/userspace-rcu/liburcu-master.sh @@ -37,7 +37,8 @@ case "$build" in echo "Out of tree build" BUILD_PATH=$WORKSPACE/oot mkdir -p $BUILD_PATH - cd $BUILD_PATH$WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS + cd $BUILD_PATH + $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS ;; dist) echo "Distribution out of tree build" @@ -52,14 +53,15 @@ case "$build" in cd $BUILD_PATH # Ignore level 1 of tar - tar xvf *.tar.* --staticrip 1 + tar xvf *.tar.* --strip 1 $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS ;; *) - echo "Standard tree build" BUILD_PATH=$WORKSPACE - $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS;; + echo "Standard tree build" + $WORKSPACE/configure --prefix=$PREFIX $CONF_OPTS + ;; esac make V=1