diff options
| -rw-r--r-- | meta/lib/oe/utils.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oe/utils.py b/meta/lib/oe/utils.py index 13f4271da0..468c76f30f 100644 --- a/meta/lib/oe/utils.py +++ b/meta/lib/oe/utils.py | |||
| @@ -249,8 +249,7 @@ def trim_version(version, num_parts=2): | |||
| 249 | return trimmed | 249 | return trimmed |
| 250 | 250 | ||
| 251 | def cpu_count(at_least=1): | 251 | def cpu_count(at_least=1): |
| 252 | import multiprocessing | 252 | cpus = len(os.sched_getaffinity(0)) |
| 253 | cpus = multiprocessing.cpu_count() | ||
| 254 | return max(cpus, at_least) | 253 | return max(cpus, at_least) |
| 255 | 254 | ||
| 256 | def execute_pre_post_process(d, cmds): | 255 | def execute_pre_post_process(d, cmds): |
