Removed "--paralle 1" from building python again

Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
This commit is contained in:
Fabian Sauter 2022-07-27 12:05:47 +02:00
parent 7673db6959
commit 7ad254e07a

View file

@ -51,8 +51,7 @@ class CMakeBuild(build_ext):
]
cfg = 'Debug' if self.debug else 'Release'
build_args = ['--config', cfg,
'--parallel', '1']
build_args = ['--config', cfg]
env = os.environ.copy()
oldCxxFlags = env.get('CXXFLAGS', '')