mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
Do not hardcode the number of cores to use for compilation.
This commit is contained in:
parent
b678cbd3e3
commit
3f4d8f30e7
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@ cd ..
|
|||
|
||||
TARGET=debug
|
||||
|
||||
make -j24 $TARGET
|
||||
make -j $(getconf _NPROCESSORS_ONLN) $TARGET
|
||||
if [ $? -ne 0 ]; then
|
||||
echo "Failed to build ioq3"
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue