From 99d42ba297c6161bdbecfc7f1b21e0fc83ae7767 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Tue, 20 Aug 2024 18:47:40 +0200 Subject: [PATCH] ci: change make option from "--jobs=N" to "-j N" This fixes the following error on FreeBSD: make: illegal argument to -j -- must be positive integer! --- tools/build_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build_test.sh b/tools/build_test.sh index 37d838ac8..aec05bc49 100755 --- a/tools/build_test.sh +++ b/tools/build_test.sh @@ -56,7 +56,7 @@ if [ -f "build.ninja" ]; then ninja -v sudo ninja install else - make VERBOSE=1 --jobs="$(nproc)" + make VERBOSE=1 -j "$(nproc)" sudo make install fi ctest -V