1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-12 14:14:48 +02:00

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!
This commit is contained in:
Sébastien Helleu
2024-08-20 18:47:40 +02:00
parent fca21cac3f
commit 99d42ba297
+1 -1
View File
@@ -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