From: Jonathan Rajotte Date: Mon, 26 Jan 2015 21:27:47 +0000 (-0500) Subject: Fix: wrong configure -> make order X-Git-Url: https://git.lttng.org./?a=commitdiff_plain;h=3801bff5f42ba75703756f2a900bed3bae4a2461;p=lttng-ci.git Fix: wrong configure -> make order --- diff --git a/lttng-ust/lttng-ust-master.sh b/lttng-ust/lttng-ust-master.sh index a1efae5..7fef714 100755 --- a/lttng-ust/lttng-ust-master.sh +++ b/lttng-ust/lttng-ust-master.sh @@ -63,10 +63,11 @@ case "$build" in mkdir -p $BUILD_PATH cp *.tar.* $BUILD_PATH/ cd $BUILD_PATH - $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS # Ignore level 1 of tar tar xvf *.tar.* --strip 1 + + $BUILD_PATH/configure --prefix=$PREFIX $CONF_OPTS ;; *) BUILD_PATH=$WORKSPACE