From 7769a1f12baa19ef1d0bccb4db36168f0fe0dcc1 Mon Sep 17 00:00:00 2001 From: Gaƫtan Gilbert Date: Tue, 30 Mar 2021 10:24:31 +0200 Subject: CI: don't output-sync Not much benefit and it breaks make's print-directory system. --- dev/ci/ci-common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'dev/ci') 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 } -- cgit v1.2.3