From 3801bff5f42ba75703756f2a900bed3bae4a2461 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Mon, 26 Jan 2015 16:27:47 -0500 Subject: [PATCH] Fix: wrong configure -> make order --- lttng-ust/lttng-ust-master.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.34.1