summaryrefslogtreecommitdiffstats
path: root/Lib/distutils
diff options
context:
space:
mode:
authordoko@ubuntu.com <doko@ubuntu.com>2016-06-04 22:44:01 (GMT)
committerdoko@ubuntu.com <doko@ubuntu.com>2016-06-04 22:44:01 (GMT)
commit36987d7c8d93eebde28404dd1e8789f54780afa6 (patch)
tree46122f29211b83fe24b657195a93d311c0d1fc66 /Lib/distutils
parentb4b966ece26b4fc14c94fa9bccd831d5d5c93aab (diff)
parent6ada01234db375a606e11bab480e56b21d0825ed (diff)
downloadcpython-36987d7c8d93eebde28404dd1e8789f54780afa6.zip
cpython-36987d7c8d93eebde28404dd1e8789f54780afa6.tar.gz
cpython-36987d7c8d93eebde28404dd1e8789f54780afa6.tar.bz2
- merge 3.5
Diffstat (limited to 'Lib/distutils')
-rw-r--r--Lib/distutils/command/build_ext.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index d4cb11e..f03a4e3 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -748,7 +748,7 @@ class build_ext(Command):
if sysconfig.get_config_var('Py_ENABLE_SHARED'):
pythonlib = 'python{}.{}{}'.format(
sys.hexversion >> 24, (sys.hexversion >> 16) & 0xff,
- sys.abiflags)
+ sysconfig.get_config_var('ABIFLAGS'))
return ext.libraries + [pythonlib]
else:
return ext.libraries