aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGaëtan Gilbert2021-03-30 10:24:31 +0200
committerGaëtan Gilbert2021-03-30 10:24:31 +0200
commit7769a1f12baa19ef1d0bccb4db36168f0fe0dcc1 (patch)
tree4562c10534ed63139cf71346e6341d884677f381
parentc2ed2e395f2164ebbc550e70899c49af23e1ad1e (diff)
CI: don't output-sync
Not much benefit and it breaks make's print-directory system.
-rw-r--r--dev/ci/ci-common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/ci/ci-common.sh b/dev/ci/ci-common.sh
index 006565df5c..6d1e6d788a 100644
--- a/dev/ci/ci-common.sh
+++ b/dev/ci/ci-common.sh
@@ -138,8 +138,8 @@ make()
if [ -z "${MAKEFLAGS+x}" ] && [ -n "${NJOBS}" ];
then
# Not submake and parallel make requested
- command make --output-sync -j "$NJOBS" "$@"
+ command make -j "$NJOBS" "$@"
else
- command make --output-sync "$@"
+ command make "$@"
fi
}