1
0

Remove nproc to allow BSD compilation

This commit is contained in:
LogicParrot 2016-02-08 14:31:33 +02:00
parent bcbfd3348d
commit 945d3f6343

View File

@ -215,7 +215,7 @@ cmake .. -DCMAKE_BUILD_TYPE=$BUILDTYPE || error "cmake failed"
# Make.
echo " --- Compiling..."
make -j`nproc` || error "Compiling failed"
make -j 2 || error "Compiling failed"
echo