From 45bca777aa8021f0173e442ed7838696956be333 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Wed, 18 Jul 2018 10:25:19 +0800 Subject: [PATCH] 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 --- run-make-check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run-make-check.sh b/run-make-check.sh index 66191f4063343..6a6ea2e63e7ec 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 -- 2.39.5