From 4f686830fbc63736ef8fbe2cb43614a446c29096 Mon Sep 17 00:00:00 2001 From: Jonathan Rajotte Date: Tue, 27 Jan 2015 16:41:33 -0500 Subject: [PATCH] Fix: missing ; in if --- lttng-ust/lttng-ust-master.sh | 2 +- userspace-rcu/liburcu-master.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lttng-ust/lttng-ust-master.sh b/lttng-ust/lttng-ust-master.sh index be2f31e..e20fa0f 100755 --- a/lttng-ust/lttng-ust-master.sh +++ b/lttng-ust/lttng-ust-master.sh @@ -102,6 +102,6 @@ make clean find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -if [ $build = "dist" ] then +if [ $build = "dist" ]; then rm -rf $BUILD_PATH fi diff --git a/userspace-rcu/liburcu-master.sh b/userspace-rcu/liburcu-master.sh index 7bccb9e..20da6f9 100755 --- a/userspace-rcu/liburcu-master.sh +++ b/userspace-rcu/liburcu-master.sh @@ -70,6 +70,6 @@ make clean find $WORKSPACE/build/lib -name "*.so" -exec chrpath --delete {} \; find $WORKSPACE/build/lib -name "*.la" -exec rm -f {} \; -if [ $build = "dist" ] then +if [ $build = "dist" ]; then rm -rf $BUILD_PATH fi -- 2.34.1