changeset: 92732:222e0faa5fa9 branch: 2.7 parent: 92729:6316475af62d user: doko@ubuntu.com date: Thu Oct 02 02:10:06 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 6316475af62d -r 222e0faa5fa9 Lib/distutils/command/build_ext.py --- a/Lib/distutils/command/build_ext.py Thu Oct 02 01:58:58 2014 +0200 +++ b/Lib/distutils/command/build_ext.py Thu Oct 02 02:10:06 2014 +0200 @@ -235,7 +235,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 6316475af62d -r 222e0faa5fa9 Misc/NEWS --- a/Misc/NEWS Thu Oct 02 01:58:58 2014 +0200 +++ b/Misc/NEWS Thu Oct 02 02:10:06 2014 +0200 @@ -244,6 +244,8 @@ - Issue #18096: Fix library order returned by python-config. +- Issue #17219: Add library build dir for Python extension cross-builds. + Windows -------