Update buildroot 2020.02.01 (#622)
* Update buildroot 2020.02.01 Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix LN * Fix wpa Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix lint Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * fix-network Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch> * Fix script Signed-off-by: Pascal Vizeli <pvizeli@syshack.ch>
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
From b0232c3cf1051749dd1e2bd0ec7c5c0a3a008d2f Mon Sep 17 00:00:00 2001
|
||||
From: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
|
||||
Date: Thu, 9 May 2019 15:06:36 +0200
|
||||
Subject: [PATCH] Fix invalid inclusion headers
|
||||
|
||||
By default, matplotlib includes headers from host
|
||||
machine which breaks the build process.
|
||||
|
||||
Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
|
||||
---
|
||||
python-matplotlib-3.0.3/setupext.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/setupext.py b/setupext.py
|
||||
index fc82d5d..eb978d2 100644
|
||||
--- a/setupext.py
|
||||
+++ b/setupext.py
|
||||
@@ -267,7 +267,7 @@ def get_base_dirs():
|
||||
'gnu0': ['/usr'],
|
||||
'aix5': ['/usr/local'],
|
||||
}
|
||||
- return basedir_map.get(sys.platform, ['/usr/local', '/usr'])
|
||||
+ return basedir_map.get(sys.platform, [])
|
||||
|
||||
|
||||
def get_include_dirs():
|
||||
--
|
||||
2.7.4
|
||||
|
||||
Reference in New Issue
Block a user