diff options
Diffstat (limited to 'meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch')
| -rw-r--r-- | meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch b/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch deleted file mode 100644 index 222a567dd5..0000000000 --- a/meta/recipes-devtools/python/python3/0001-Don-t-search-system-for-headers-libraries.patch +++ /dev/null | |||
| @@ -1,27 +0,0 @@ | |||
| 1 | From aa8f1709c54557d2b51a9a37d15ccc3de62e90cb Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Jeremy Puhlman <jpuhlman@mvista.com> | ||
| 3 | Date: Wed, 4 Mar 2020 00:06:42 +0000 | ||
| 4 | Subject: [PATCH] Don't search system for headers/libraries | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [oe-core specific] | ||
| 7 | Signed-off-by: Jeremy Puhlman <jpuhlman@mvista.com> | ||
| 8 | |||
| 9 | --- | ||
| 10 | setup.py | 4 ++-- | ||
| 11 | 1 file changed, 2 insertions(+), 2 deletions(-) | ||
| 12 | |||
| 13 | diff --git a/setup.py b/setup.py | ||
| 14 | index 6811951..65ae476 100644 | ||
| 15 | --- a/setup.py | ||
| 16 | +++ b/setup.py | ||
| 17 | @@ -877,8 +877,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. | ||
