summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-06-26 09:18:40 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-06-28 08:36:00 +0100
commit3d404ffa425213f8bcc02543df0eaa55b122fcaf (patch)
treecd5ab16c698059fc7a0a6448599934d81a8e7e45 /meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
parentddaa85812a432d5ec7958f5c7acf229447e18f6c (diff)
downloadpoky-3d404ffa425213f8bcc02543df0eaa55b122fcaf.tar.gz
python3-numpy: update 1.18.5 -> 1.19.0
License-Update: copyright years (From OE-Core rev: c5774fca09de12b29b1f9062e41c71db6abc972b) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch')
-rw-r--r--meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch11
1 files changed, 7 insertions, 4 deletions
diff --git a/meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch b/meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
index 98a9705831..cdb6a473d2 100644
--- a/meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
+++ b/meta/recipes-devtools/python-numpy/files/0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch
@@ -1,4 +1,4 @@
1From 672a75c8417ce08db9e31fc415ec445479231d5a Mon Sep 17 00:00:00 2001 1From 27f6687e49bf555fc494d2f14bae6ecd0fa30f14 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com> 2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Thu, 10 Dec 2015 13:20:30 +0200 3Date: Thu, 10 Dec 2015 13:20:30 +0200
4Subject: [PATCH] Don't search /usr and so on for libraries by default to 4Subject: [PATCH] Don't search /usr and so on for libraries by default to
@@ -14,11 +14,11 @@ Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
14 1 file changed, 5 insertions(+), 37 deletions(-) 14 1 file changed, 5 insertions(+), 37 deletions(-)
15 15
16diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py 16diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
17index ba2b1f4..f94dce1 100644 17index 3a6a7b2..6c2c3da 100644
18--- a/numpy/distutils/system_info.py 18--- a/numpy/distutils/system_info.py
19+++ b/numpy/distutils/system_info.py 19+++ b/numpy/distutils/system_info.py
20@@ -278,45 +278,13 @@ if sys.platform == 'win32': 20@@ -309,45 +309,13 @@ if sys.platform == 'win32':
21 add_system_root(os.path.join(conda_dir, 'Library')) 21 add_system_root(os.path.join(conda_dir, 'Library'))
22 22
23 else: 23 else:
24- default_lib_dirs = libpaths(['/usr/local/lib', '/opt/lib', '/usr/lib', 24- default_lib_dirs = libpaths(['/usr/local/lib', '/opt/lib', '/usr/lib',
@@ -68,3 +68,6 @@ index ba2b1f4..f94dce1 100644
68 68
69 if os.path.join(sys.prefix, 'lib') not in default_lib_dirs: 69 if os.path.join(sys.prefix, 'lib') not in default_lib_dirs:
70 default_lib_dirs.insert(0, os.path.join(sys.prefix, 'lib')) 70 default_lib_dirs.insert(0, os.path.join(sys.prefix, 'lib'))
71--
722.17.1
73