2
1

0001-Fix-invalid-inclusion-headers.patch 827 B

1234567891011121314151617181920212223242526272829
  1. From b0232c3cf1051749dd1e2bd0ec7c5c0a3a008d2f Mon Sep 17 00:00:00 2001
  2. From: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
  3. Date: Thu, 9 May 2019 15:06:36 +0200
  4. Subject: [PATCH] Fix invalid inclusion headers
  5. By default, matplotlib includes headers from host
  6. machine which breaks the build process.
  7. Signed-off-by: Jugurtha BELKALEM <jugurtha.belkalem@smile.fr>
  8. ---
  9. python-matplotlib-3.0.3/setupext.py | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. diff --git a/setupext.py b/setupext.py
  12. index fc82d5d..eb978d2 100644
  13. --- a/setupext.py
  14. +++ b/setupext.py
  15. @@ -267,7 +267,7 @@ def get_base_dirs():
  16. 'gnu0': ['/usr'],
  17. 'aix5': ['/usr/local'],
  18. }
  19. - return basedir_map.get(sys.platform, ['/usr/local', '/usr'])
  20. + return basedir_map.get(sys.platform, [])
  21. def get_include_dirs():
  22. --
  23. 2.7.4