summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--morphlib/util.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/morphlib/util.py b/morphlib/util.py
index 3ac5e066..fd5c085a 100644
--- a/morphlib/util.py
+++ b/morphlib/util.py
@@ -57,7 +57,7 @@ def make_concurrency(cores=None):
'''
- n = multiprocessing.cpu_count() if cores is None else cores
+ n = cpu_count() if cores is None else cores
# Experimental results (ref. Kinnison) says a factor of 1.5
# gives about the optimal result for build times, since much of
# builds are I/O bound, not CPU bound.