Fix: error in copy paste :(
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 27 Jan 2015 22:06:17 +0000 (17:06 -0500)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 27 Jan 2015 22:06:17 +0000 (17:06 -0500)
userspace-rcu/liburcu-master.sh

index 20da6f9d29d467c707929b7256feb5b7079c758d..21bee61bfe2227664ae226c7f27612b8767d4c14 100755 (executable)
@@ -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
This page took 0.023833 seconds and 4 git commands to generate.