From 156e81825b9ee6d636f84ffdddd25e952347678b Mon Sep 17 00:00:00 2001 From: "doko@ubuntu.com" Date: Thu, 21 Mar 2013 13:21:49 -0700 Subject: - 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. --- tests/test_install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/test_install.py') diff --git a/tests/test_install.py b/tests/test_install.py index 1bd31e24..b1901273 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, -- cgit v1.2.1