From e4020e17f44546563d09488a3886d4719557d163 Mon Sep 17 00:00:00 2001 From: Tobias Fischer Date: Fri, 29 Jan 2021 07:37:21 +1000 Subject: [PATCH] Update build.sh --- recipe/build.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/recipe/build.sh b/recipe/build.sh index 56656cb..be91d65 100644 --- a/recipe/build.sh +++ b/recipe/build.sh @@ -3,6 +3,7 @@ mkdir build cd build +# This is needed as otherwise the log limit exceeds on Travis if [ ${target_platform} == "linux-ppc64le" ]; then WARNING_FLAGS=-DCMAKE_CXX_FLAGS="-Wno-deprecated-copy" else @@ -28,9 +29,5 @@ cmake .. \ -DOGRE_BUILD_LIBS_AS_FRAMEWORKS=0 \ ${WARNING_FLAGS} -if [ ${target_platform} == "linux-ppc64le" ]; then - make -j${CPU_COUNT} >/dev/null || make -else - make -j${CPU_COUNT} -fi +make -j${CPU_COUNT} make install