summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlphadelta14 <alpha@pokesplash.net>2019-10-18 03:57:46 -0400
committerStefan Behnel <stefan_ml@behnel.de>2019-10-18 09:57:46 +0200
commit01e00f6cb9ac77d26f92da777d25cebef748eaa7 (patch)
treec4047fd751c61b1662db9ec05eadeb817920b9ba
parentbe53f1234bec0bca4c35f020905e24d0637b91e3 (diff)
downloadcython-01e00f6cb9ac77d26f92da777d25cebef748eaa7.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):
"""