From: Alfredo Deza Date: Thu, 22 Sep 2016 14:53:13 +0000 (-0400) Subject: ceph-dev-setup: fix bash syntax error on conditional check X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fa55d5298ecaadff22c290b543b48fa3514489c2;p=ceph-build.git ceph-dev-setup: fix bash syntax error on conditional check Signed-off-by: Alfredo Deza --- diff --git a/ceph-dev-setup/build/build b/ceph-dev-setup/build/build index 244c02b4..2931f453 100644 --- a/ceph-dev-setup/build/build +++ b/ceph-dev-setup/build/build @@ -59,7 +59,7 @@ fi # make-dist does not exist for autotools builds -if [ ! -x make-dist ] +if [ ! -x make-dist ]; then echo "Using autotools build system" echo "Running autogen.sh ..." ./autogen.sh