summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_ext.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2002-11-14 01:44:35 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2002-11-14 01:44:35 (GMT)
commit1cace1a30a31d353dbd4a1f4760036c42b4114b9 (patch)
treef28f7f712b1a2aded76286d6ec9f0c863fa8cb34 /Lib/distutils/command/build_ext.py
parent0ff98b9346f77d6888c29e5c787c5b1b75023efc (diff)
downloadcpython-1cace1a30a31d353dbd4a1f4760036c42b4114b9.zip
cpython-1cace1a30a31d353dbd4a1f4760036c42b4114b9.tar.gz
cpython-1cace1a30a31d353dbd4a1f4760036c42b4114b9.tar.bz2
[Bug #550364] Use sysconfig.get_python_version()
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
-rw-r--r--Lib/distutils/command/build_ext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 4bfc20c..250e539 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -12,7 +12,7 @@ import sys, os, string, re
from types import *
from distutils.core import Command
from distutils.errors import *
-from distutils.sysconfig import customize_compiler
+from distutils.sysconfig import customize_compiler, get_python_version
from distutils.dep_util import newer_group
from distutils.extension import Extension
from distutils import log
@@ -184,7 +184,7 @@ class build_ext (Command):
if string.find(sys.executable, sys.exec_prefix) != -1:
# building third party extensions
self.library_dirs.append(os.path.join(sys.prefix, "lib",
- "python" + sys.version[:3],
+ "python" + get_python_version(),
"config"))
else:
# building python standard extensions