changeset: 92734:80a515e255aa parent: 92731:8db7fcf6c67d parent: 92733:c5f908c56fbd user: doko@ubuntu.com date: Thu Oct 02 02:12:34 2014 +0200 files: Lib/distutils/command/build_ext.py Misc/NEWS description: - Issue #17219: Add library build dir for Python extension cross-builds. diff -r 8db7fcf6c67d -r 80a515e255aa Lib/distutils/command/build_ext.py --- a/Lib/distutils/command/build_ext.py Thu Oct 02 02:02:45 2014 +0200 +++ b/Lib/distutils/command/build_ext.py Thu Oct 02 02:12:34 2014 +0200 @@ -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 -r 8db7fcf6c67d -r 80a515e255aa Misc/NEWS --- a/Misc/NEWS Thu Oct 02 02:02:45 2014 +0200 +++ b/Misc/NEWS Thu Oct 02 02:12:34 2014 +0200 @@ -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 -----