aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-11-04 15:22:31 -0400
committerGitHub <noreply@github.com>2016-11-04 15:22:31 -0400
commit9ddf2087cf774536e52a3494cfd0d6c3b917d990 (patch)
treed14e84e1cf981c5827f322acc19fc16d11200a2d
parentb163acc7a885419dbdcaf12623abd2d7065d4621 (diff)
parenta811607a23f9e2ab05c071b03d59f55951860b6c (diff)
downloadexternal_python_setuptools-9ddf2087cf774536e52a3494cfd0d6c3b917d990.tar.gz
external_python_setuptools-9ddf2087cf774536e52a3494cfd0d6c3b917d990.tar.bz2
external_python_setuptools-9ddf2087cf774536e52a3494cfd0d6c3b917d990.zip
Merge pull request #837 from reaperhulk/reaperhulk-patch-1
Support Python 3.3.0 for extension suffix
-rw-r--r--setuptools/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py
index a66e0bf3..66ed285e 100644
--- a/setuptools/command/build_ext.py
+++ b/setuptools/command/build_ext.py
@@ -109,7 +109,7 @@ class build_ext(_build_ext):
and get_abi3_suffix()
)
if use_abi3:
- so_ext = get_config_var('EXT_SUFFIX')
+ so_ext = get_config_var('EXT_SUFFIX') or get_config_var('SO')
filename = filename[:-len(so_ext)]
filename = filename + get_abi3_suffix()
if isinstance(ext, Library):