[Python-checkins] cpython (merge 3.4 -> default): - Issue #17219: Add library build dir for Python extension cross-builds.

matthias.klose python-checkins at python.org
Thu Oct 2 02:13:06 CEST 2014


https://hg.python.org/cpython/rev/80a515e255aa
changeset:   92734:80a515e255aa
parent:      92731:8db7fcf6c67d
parent:      92733:c5f908c56fbd
user:        doko at ubuntu.com
date:        Thu Oct 02 02:12:34 2014 +0200
summary:
  - Issue #17219: Add library build dir for Python extension cross-builds.

files:
  Lib/distutils/command/build_ext.py |  2 +-
  Misc/NEWS                          |  2 ++
  2 files changed, 3 insertions(+), 1 deletions(-)


diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -244,7 +244,7 @@
         # Python's library directory must be appended to library_dirs
         # See Issues: #1600860, #4366
         if (sysconfig.get_config_var('Py_ENABLE_SHARED')):
-            if sys.executable.startswith(os.path.join(sys.exec_prefix, "bin")):
+            if not sysconfig.python_build:
                 # building third party extensions
                 self.library_dirs.append(sysconfig.get_config_var('LIBDIR'))
             else:
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1060,6 +1060,8 @@
 
 - Issue #18096: Fix library order returned by python-config.
 
+- Issue #17219: Add library build dir for Python extension cross-builds.
+
 C API
 -----
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list