diff options
author | Kefu Chai <kchai@redhat.com> | 2018-07-18 04:25:19 +0200 |
---|---|---|
committer | Kefu Chai <kchai@redhat.com> | 2018-07-18 04:25:21 +0200 |
commit | 45bca777aa8021f0173e442ed7838696956be333 (patch) | |
tree | 2989b2086f3ebe3f0a82edc7dcb90e21880c0802 /run-make-check.sh | |
parent | Merge PR #22966 into master (diff) | |
download | ceph-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-x | run-make-check.sh | 4 |
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 |