]> granicus.if.org Git - python/commitdiff
Issue #20211: Do not add the directory for installing C header files and
authorXavier de Gaye <xdegaye@users.sourceforge.net>
Wed, 14 Dec 2016 10:14:33 +0000 (11:14 +0100)
committerXavier de Gaye <xdegaye@users.sourceforge.net>
Wed, 14 Dec 2016 10:14:33 +0000 (11:14 +0100)
the directory for installing object code libraries to the cross compilation
search paths.

Misc/NEWS
setup.py

index f4433daf8035a6e1c40b72cf03474468d94c9b62..97502a999b0d3df11e80696a63741ea0b63b4ed4 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -53,6 +53,10 @@ Tests
 Build
 -----
 
+- Issue #20211: Do not add the directory for installing C header files and the
+  directory for installing object code libraries to the cross compilation
+  search paths. Original patch by Thomas Petazzoni.
+
 - Issue #28849: Do not define sys.implementation._multiarch on Android.
 
 
index 7cb1141dac79d4cb878e6a33753e99c5084dc502..d218722e0e662436c9aa962ec16f040b94ad4b52 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -532,8 +532,9 @@ class PyBuildExt(build_ext):
                     for directory in reversed(options.dirs):
                         add_dir_to_list(dir_list, directory)
 
-        if os.path.normpath(sys.base_prefix) != '/usr' \
-                and not sysconfig.get_config_var('PYTHONFRAMEWORK'):
+        if (not cross_compiling and
+                os.path.normpath(sys.base_prefix) != '/usr' and
+                not sysconfig.get_config_var('PYTHONFRAMEWORK')):
             # OSX note: Don't add LIBDIR and INCLUDEDIR to building a framework
             # (PYTHONFRAMEWORK is set) to avoid # linking problems when
             # building a framework with different architectures than