mirror of
https://github.com/home-assistant/operating-system.git
synced 2025-11-17 22:59:27 +00:00
* 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>
30 lines
827 B
Diff
30 lines
827 B
Diff
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
|
|
|