summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-03-13 10:19:35 +0000
committerGeorg Brandl <georg@python.org>2007-03-13 10:19:35 +0000
commit74fb2114455e73bc4ce9c384ee599db24ba95b3f (patch)
tree319c0b751430aa3db0e71273e85bf5f8a48d1273
parent6cdcdbcdaad14351d392888403419f5a3204b1a3 (diff)
downloadcpython-git-74fb2114455e73bc4ce9c384ee599db24ba95b3f.tar.gz
Patch #1569798: fix a bug in distutils when building Python from a
directory within sys.exec_prefix. (backport from rev. 54331)
-rw-r--r--Lib/distutils/command/build_ext.py4
-rw-r--r--Misc/NEWS3
2 files changed, 5 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index 542b77a7ad..82474de823 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -186,7 +186,7 @@ class build_ext (Command):
# for extensions under Cygwin and AtheOS Python's library directory must be
# appended to library_dirs
if sys.platform[:6] == 'cygwin' or sys.platform[:6] == 'atheos':
- if string.find(sys.executable, sys.exec_prefix) != -1:
+ if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
# building third party extensions
self.library_dirs.append(os.path.join(sys.prefix, "lib",
"python" + get_python_version(),
@@ -199,7 +199,7 @@ class build_ext (Command):
# Python's library directory must be appended to library_dirs
if (sys.platform.startswith('linux') or sys.platform.startswith('gnu')) \
and sysconfig.get_config_var('Py_ENABLE_SHARED'):
- if string.find(sys.executable, sys.exec_prefix) != -1:
+ if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
# building third party extensions
self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
else:
diff --git a/Misc/NEWS b/Misc/NEWS
index b993ad89ea..3a5edc0a8b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -384,6 +384,9 @@ Tests
Build
-----
+- Patch #1569798: fix a bug in distutils when building Python from a
+ directory within sys.exec_prefix.
+
- Bug #1675511: Use -Kpic instead of -xcode=pic32 on Solaris/x86.
- Disable _XOPEN_SOURCE on NetBSD 1.x.