1From b6ead2d17ceafed47e598b6f50f3ff669deec5ab Mon Sep 17 00:00:00 2001 2From: Jeremy Puhlman <jpuhlman@mvista.com> 3Date: Wed, 4 Mar 2020 00:06:42 +0000 4Subject: [PATCH] Don't search system for headers/libraries 5 6Upstream-Status: Inappropriate [oe-core specific] 7Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com> 8 9--- 10 setup.py | 4 ++-- 11 1 file changed, 2 insertions(+), 2 deletions(-) 12 13diff --git a/setup.py b/setup.py 14index c190002..5ef368d 100644 15--- a/setup.py 16+++ b/setup.py 17@@ -854,8 +854,8 @@ class PyBuildExt(build_ext): 18 add_dir_to_list(self.compiler.include_dirs, 19 sysconfig.get_config_var("INCLUDEDIR")) 20 21- system_lib_dirs = ['/lib64', '/usr/lib64', '/lib', '/usr/lib'] 22- system_include_dirs = ['/usr/include'] 23+ system_lib_dirs = [] 24+ system_include_dirs = [] 25 # lib_dirs and inc_dirs are used to search for files; 26 # if a file is found in one of those directories, it can 27 # be assumed that no additional -I,-L directives are needed. 28