linux-headers: bump 4.{4, 9}.x series
[buildroot-gz.git] / package / python3 / 0001-setup.py-do-not-add-invalid-header-locations.patch
blobdefaad9c45aca0094c2f5f71f50cf35b547e987c
1 From d6093bad6c700312ff7ff4a7bb15c815dda6f46b Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Wed, 23 Dec 2015 11:28:34 +0100
4 Subject: [PATCH] setup.py: do not add invalid header locations
6 This piece of code incorrectly adds /usr/include to
7 self.compiler.include_dirs, and results in the following invalid
8 compilation line:
10 /home/thomas/projets/buildroot/output/host/usr/bin/arm-none-linux-gnueabi-gcc
11 -fPIC -Wno-unused-result -Werror=declaration-after-statement -DNDEBUG -g
12 -O3 -Wall -Wstrict-prototypes -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
13 -D_FILE_OFFSET_BITS=64 -pipe -Os
14 -I./Include -I/usr/include -I. -IInclude
15 -I/home/thomas/projets/buildroot/output/host/usr/arm-buildroot-linux-gnueabi/sysroot/usr/include
16 -I/home/thomas/projets/buildroot/output/build/python3-3.4.0b1/Include
17 -I/home/thomas/projets/buildroot/output/build/python3-3.4.0b1
18 -c /home/thomas/projets/buildroot/output/build/python3-3.4.0b1/Modules/_struct.c
19 -o build/temp.linux-arm-3.4/home/thomas/projets/buildroot/output/build/python3-3.4.0b1/Modules/_struct.o
20 cc1: warning: include location "/usr/include" is unsafe for cross-compilation [-Wpoison-system-directories]
22 The -I/usr/include is wrong when cross compiling, so we disable adding
23 INCLUDEDIR and LIBDIR from the host when cross compiling.
25 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 ---
27 setup.py | 3 ++-
28 1 file changed, 2 insertions(+), 1 deletion(-)
30 diff --git a/setup.py b/setup.py
31 index da67731..dbd2a3c 100644
32 --- a/setup.py
33 +++ b/setup.py
34 @@ -511,7 +511,8 @@ class PyBuildExt(build_ext):
35 add_dir_to_list(dir_list, directory)
37 if os.path.normpath(sys.base_prefix) != '/usr' \
38 - and not sysconfig.get_config_var('PYTHONFRAMEWORK'):
39 + and not sysconfig.get_config_var('PYTHONFRAMEWORK') \
40 + and not cross_compiling:
41 # OSX note: Don't add LIBDIR and INCLUDEDIR to building a framework
42 # (PYTHONFRAMEWORK is set) to avoid # linking problems when
43 # building a framework with different architectures than
44 --
45 2.6.4