From 8a804acc7c9bfa48177a4a88d43d81cbf6ef0f18 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 27 Jan 2015 17:06:17 -0500 Subject: [PATCH] Fix: error in copy paste :( --- userspace-rcu/liburcu-master.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) 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 -- 2.34.1