summaryrefslogtreecommitdiffstats
path: root/run-make-check.sh
diff options
context:
space:
mode:
authorKefu Chai <kchai@redhat.com>2018-07-18 04:25:19 +0200
committerKefu Chai <kchai@redhat.com>2018-07-18 04:25:21 +0200
commit45bca777aa8021f0173e442ed7838696956be333 (patch)
tree2989b2086f3ebe3f0a82edc7dcb90e21880c0802 /run-make-check.sh
parentMerge PR #22966 into master (diff)
downloadceph-45bca777aa8021f0173e442ed7838696956be333.tar.xz
ceph-45bca777aa8021f0173e442ed7838696956be333.zip
run-make-check: set WITH_SEASTAR with a non-empty string
otherwise "test -n $WITH_SEASTAR" fails, and the dependencies won't be installed. Signed-off-by: Kefu Chai <kchai@redhat.com>
Diffstat (limited to 'run-make-check.sh')
-rwxr-xr-xrun-make-check.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run-make-check.sh b/run-make-check.sh
index 66191f40633..6a6ea2e63e7 100755
--- a/run-make-check.sh
+++ b/run-make-check.sh
@@ -89,8 +89,8 @@ function run() {
fi
if test -f ./install-deps.sh ; then
- export WITH_SEASTAR
- $DRY_RUN source ./install-deps.sh --with-seastar || return 1
+ export WITH_SEASTAR=1
+ $DRY_RUN source ./install-deps.sh || return 1
trap clean_up_after_myself EXIT
fi