Skip to content
Snippets Groups Projects
Verified Commit 16c13d5a authored by Moritz Angermann's avatar Moritz Angermann
Browse files

[ci] Default value for MAKE_ARGS

We don't pass MAKE_ARGS for windows builds, so this should unbreak
them.
parent 70d713ca
No related branches found
No related tags found
No related merge requests found
......@@ -354,9 +354,9 @@ function build_make() {
fail "BIN_DIST_PREP_TAR_COMP is not set"
fi
if [[ -n "${VERBOSE:-}" ]]; then
MAKE_ARGS="$MAKE_ARGS V=1"
MAKE_ARGS="${MAKE_ARGS:-} V=1"
else
MAKE_ARGS="$MAKE_ARGS V=0"
MAKE_ARGS="${MAKE_ARGS:-} V=0"
fi
echo "include mk/flavours/${BUILD_FLAVOUR}.mk" > mk/build.mk
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment