python-werkzeug: bump to version 0.11.15
[buildroot-gz.git] / package / python3 / 0009-Don-t-add-multiarch-paths.patch
blob921e25ccbe782d14b5796461c9008257ffa48d90
1 From bac5ac529cc0902a340a5cd03308433c6e80d1f6 Mon Sep 17 00:00:00 2001
2 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
3 Date: Wed, 23 Dec 2015 11:36:27 +0100
4 Subject: [PATCH] Don't add multiarch paths
6 The add_multiarch_paths() function leads, in certain build
7 environments, to the addition of host header paths to the CFLAGS,
8 which is not appropriate for cross-compilation. This patch fixes that
9 by simply removing the call to add_multiarch_paths() when we're
10 cross-compiling.
12 Investigation done by David <buildroot-2014@inbox.com>.
14 Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 ---
16 setup.py | 2 +-
17 1 file changed, 1 insertion(+), 1 deletion(-)
19 diff --git a/setup.py b/setup.py
20 index 24a7153..8380a64 100644
21 --- a/setup.py
22 +++ b/setup.py
23 @@ -474,10 +474,10 @@ class PyBuildExt(build_ext):
24 if not cross_compiling:
25 add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib')
26 add_dir_to_list(self.compiler.include_dirs, '/usr/local/include')
27 + self.add_multiarch_paths()
28 # only change this for cross builds for 3.3, issues on Mageia
29 if cross_compiling:
30 self.add_gcc_paths()
31 - self.add_multiarch_paths()
33 # Add paths specified in the environment variables LDFLAGS and
34 # CPPFLAGS for header and library files.
35 --
36 2.6.4