From 565f79f5baef8b624d1bce22a021421c5ea6cd67 Mon Sep 17 00:00:00 2001 From: Andrey Astafyev Date: Tue, 19 Feb 2019 11:22:53 +0300 Subject: [PATCH] =?UTF-8?q?=D0=97=D0=B0=D0=BF=D1=80=D0=B5=D1=82=20=D0=B2?= =?UTF-8?q?=D1=8B=D0=B7=D0=BE=D0=B2=D0=B0=20=D1=81=20=D0=BF=D1=83=D1=81?= =?UTF-8?q?=D1=82=D1=8B=D0=BC=20=D1=81=D0=BF=D0=B8=D1=81=D0=BA=D0=BE=D0=BC?= =?UTF-8?q?=20=D0=B0=D1=80=D0=B3=D1=83=D0=BC=D0=B5=D0=BD=D1=82=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cmake.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmake.sh b/cmake.sh index 30b1397..ef5a47a 100755 --- a/cmake.sh +++ b/cmake.sh @@ -199,11 +199,11 @@ fi if [ -x "$(command -v parallel)" ]; then PV=$(parallel --version | head -n 1 | awk '{ print $3; }') if [ "$PV" -lt "20131121" ]; then - parallel generate_configuration ::: "${BUILD_TYPES[@]}" + parallel -r generate_configuration ::: "${BUILD_TYPES[@]}" elif [ "$PV" -lt "20141023" ]; then - parallel --no-notice generate_configuration ::: "${BUILD_TYPES[@]}" + parallel -r --no-notice generate_configuration ::: "${BUILD_TYPES[@]}" else - parallel --will-cite generate_configuration ::: "${BUILD_TYPES[@]}" + parallel -r --will-cite generate_configuration ::: "${BUILD_TYPES[@]}" fi else for T in "${BUILD_TYPES[@]}"; do generate_configuration "${T}"; done