diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2016-09-09 09:55:43 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-09 09:55:43 -0400 |
| commit | e2a80361d3525e6abacf31ecaa66b86bab2cfc04 (patch) | |
| tree | 96af877f2ef5796549688b865bd31a94f8c05d08 | |
| parent | 11db2604b7a5d5c119b26124aa71e6c6f24fc8f8 (diff) | |
| parent | 00ac09a54693e77cbe791d0f8ca85db20a547e14 (diff) | |
| download | python-setuptools-git-e2a80361d3525e6abacf31ecaa66b86bab2cfc04.tar.gz | |
Merge pull request #777 from dstufft/fix-py-limited-api
Use EXT_SUFFIX instead of SO for py_limited_api renaming
| -rw-r--r-- | setuptools/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index f994b626..454c91fb 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -111,7 +111,7 @@ class build_ext(_build_ext): and get_abi3_suffix() ) if use_abi3: - so_ext = get_config_var('SO') + so_ext = get_config_var('EXT_SUFFIX') filename = filename[:-len(so_ext)] filename = filename + get_abi3_suffix() if isinstance(ext, Library): |
