summaryrefslogtreecommitdiff
path: root/tests/test_install.py
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2013-03-21 13:39:52 -0700
committerdoko@ubuntu.com <doko@ubuntu.com>2013-03-21 13:39:52 -0700
commitd4ed75baabba8f3bcbb48a4895c943c5ff508dbf (patch)
tree7191102da28954a4181e63487677420552c20109 /tests/test_install.py
parent0c09bf1bc035dfbc0caf1339c05a04cca238fcd6 (diff)
parent92dbe54b5873bcf8c2b20260482a353a9e2c5a70 (diff)
downloadpython-setuptools-git-d4ed75baabba8f3bcbb48a4895c943c5ff508dbf.tar.gz
- Issue #16754: Fix the incorrect shared library extension on linux. Introduce
two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
Diffstat (limited to 'tests/test_install.py')
-rw-r--r--tests/test_install.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_install.py b/tests/test_install.py
index 3cf2c734..e9b26427 100644
--- a/tests/test_install.py
+++ b/tests/test_install.py
@@ -23,7 +23,7 @@ from distutils.tests import support
def _make_ext_name(modname):
if os.name == 'nt' and sys.executable.endswith('_d.exe'):
modname += '_d'
- return modname + sysconfig.get_config_var('SO')
+ return modname + sysconfig.get_config_var('EXT_SUFFIX')
class InstallTestCase(support.TempdirManager,