summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClark Laughlin <clark.laughlin@linaro.org>2014-05-30 10:57:27 -0500
committerClark Laughlin <clark.laughlin@linaro.org>2014-05-30 10:57:27 -0500
commit186167217574bf63c156a2f0b1bae7271541c6e5 (patch)
treeb126bfdc7063fd0ce81434520997e015c898ac78
parent36a8e1a6d7b4f3c8f67a948173d98e11dfb5898e (diff)
fixed syntax error
-rwxr-xr-xjenkinsbuild.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/jenkinsbuild.sh b/jenkinsbuild.sh
index 556e65a..496d44c 100755
--- a/jenkinsbuild.sh
+++ b/jenkinsbuild.sh
@@ -65,9 +65,9 @@ sed -i "s/--with-storage-sheepdog/--without-storage-sheepdog/" ${libvirt_git_che
cat >> ${libvirt_git_checkout_dir}/debian/rules << EOF
makebuilddir/libvirt-bin::
- if [ ! -f already_bootstrapped ]; then
- ./bootstrap --no-git --gnulib-srcdir=.gnulib
- touch already_bootstrapped
+ if [ ! -f already_bootstrapped ]; then \
+ ./bootstrap --no-git --gnulib-srcdir=.gnulib; \
+ touch already_bootstrapped; \
fi
EOF