]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
run-make-check: set WITH_SEASTAR with a non-empty string
authorKefu Chai <kchai@redhat.com>
Wed, 18 Jul 2018 02:25:19 +0000 (10:25 +0800)
committerKefu Chai <kchai@redhat.com>
Wed, 18 Jul 2018 02:25:21 +0000 (10:25 +0800)
otherwise "test -n $WITH_SEASTAR" fails, and the dependencies won't be
installed.

Signed-off-by: Kefu Chai <kchai@redhat.com>
run-make-check.sh

index 66191f4063343f7de463c08fa4a75589315724a3..6a6ea2e63e7ec8cde9485f6756a6d88083c31608 100755 (executable)
@@ -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