1
0
Fork 0

Merge pull request #2992 from LogicParrot/posix

Remove nproc to allow BSD compilation
This commit is contained in:
LogicParrot 2016-02-08 14:31:52 +02:00
commit 816dee285f
1 changed files with 1 additions and 1 deletions

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