Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Verwiebe <info@jensverwiebe.de>2014-05-29 13:15:32 +0400
committerJens Verwiebe <info@jensverwiebe.de>2014-05-29 13:15:32 +0400
commit75135cfa9b1bc6f508da86adf8f81d7a81f1aec9 (patch)
tree29b59901b7f7f080699b5332b7ba4d899edcdfc4 /GNUmakefile
parent34ca8fe82a3a5fbd339d2292f2cc3599673a0c23 (diff)
OSX: fix T40413, automatic threads for compile throw wrong output
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 0370eba54ae..4f76cb3565d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -77,7 +77,7 @@ ifeq ($(OS), Linux)
NPROCS:=$(shell nproc)
endif
ifeq ($(OS), Darwin)
- NPROCS:=$(shell sysctl -a | grep "hw.ncpu" | cut -d" " -f2)
+ NPROCS:=$(shell sysctl -a | grep "hw.ncpu" | cut -d" " -f3)
endif
ifeq ($(OS), FreeBSD)
NPROCS:=$(shell sysctl -a | grep "hw.ncpu" | cut -d" " -f2 )