Skip to content

Commit

Permalink
run-make-check: set WITH_SEASTAR with a non-empty string
Browse files Browse the repository at this point in the history
otherwise "test -n $WITH_SEASTAR" fails, and the dependencies won't be
installed.

Signed-off-by: Kefu Chai <[email protected]>
  • Loading branch information
tchaikov committed Jul 18, 2018
1 parent 3e18ac7 commit 45bca77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run-make-check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 45bca77

Please sign in to comment.