From e887c280d59ffd43fcb3788fd13087278fd000cf Mon Sep 17 00:00:00 2001
From: EndrII <EndrIIMail@gmail.com>
Date: Sat, 22 Jan 2022 16:38:43 +0300
Subject: [PATCH] fix parallel

---
 BuildBotLib/cmake.py | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/BuildBotLib/cmake.py b/BuildBotLib/cmake.py
index 50f8526..7bc6cd4 100644
--- a/BuildBotLib/cmake.py
+++ b/BuildBotLib/cmake.py
@@ -21,9 +21,7 @@ class CMake(Make):
         if len(target):
             command += ' --target ' + target
         else:
-            cpus = multiprocessing.cpu_count()
-            if cpus:
-                command += ' --parallel ' + str(cpus)
+            command += ' --parallel'
 
         cxx = []
         if cxxFlags is not None: