Skip to content

Commit

Permalink
Silence make on PPC
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias-Fischer authored Jan 27, 2021
1 parent 4ab97fc commit f2ea346
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion recipe/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@ cmake .. \
-DOGRE_CONFIG_THREAD_PROVIDER="std" \
-DOGRE_BUILD_LIBS_AS_FRAMEWORKS=0

make -j${CPU_COUNT}
if [ ${target_platform} == "linux-ppc64le" ]; then
make -j${CPU_COUNT} >/dev/null || make
else
make -j${CPU_COUNT}
fi
make install

0 comments on commit f2ea346

Please sign in to comment.