From f53932d7ca247d6707e8461a5f2860572233ceb6 Mon Sep 17 00:00:00 2001 From: Dirk Ziegelmeier Date: Mon, 22 Oct 2018 17:18:34 +0200 Subject: [PATCH] Travis: Remove "-j 4" command line option - does not make sense for ninja-build --- travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis.sh b/travis.sh index f46ac848..34e41f7d 100755 --- a/travis.sh +++ b/travis.sh @@ -28,7 +28,7 @@ if [ $ERR != 0 ]; then echo "cmake GENERATE failed" exit 33 fi -/usr/local/bin/cmake --build . -- -j 4 +/usr/local/bin/cmake --build . ERR=$? if [ $ERR != 0 ]; then echo "cmake build failed"