summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlphadelta14 <alpha@pokesplash.net>2019-10-18 03:57:46 -0400
committerStefan Behnel <stefan_ml@behnel.de>2019-11-01 14:52:52 +0100
commitdfc582d290c9e1c938cc8d2cc1261bbde3a03e05 (patch)
treec05f819a66e4742dc3d535e747713e3957c3b96a
parentca585be25e2df6291ac6fd747c1152187d2669d6 (diff)
downloadcython-dfc582d290c9e1c938cc8d2cc1261bbde3a03e05.tar.gz
Leverage distutil's build_extensions so that --parallel works on Python 3 (GH-3187)
-rw-r--r--Cython/Distutils/old_build_ext.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cython/Distutils/old_build_ext.py b/Cython/Distutils/old_build_ext.py
index 39b6cfb09..882f72666 100644
--- a/Cython/Distutils/old_build_ext.py
+++ b/Cython/Distutils/old_build_ext.py
@@ -191,7 +191,8 @@ class old_build_ext(_build_ext.build_ext):
for ext in self.extensions:
ext.sources = self.cython_sources(ext.sources, ext)
- self.build_extension(ext)
+ # Call original build_extensions
+ _build_ext.build_ext.build_extensions(self)
def cython_sources(self, sources, extension):
"""