mirror of
https://github.com/liberatedsystems/openCom-Companion.git
synced 2024-11-22 05:20:36 +01:00
29 lines
1.3 KiB
Diff
29 lines
1.3 KiB
Diff
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
|
|
index fc7018a..7b514bc 100644
|
|
--- a/numpy/distutils/system_info.py
|
|
+++ b/numpy/distutils/system_info.py
|
|
@@ -340,10 +340,10 @@ if os.path.join(sys.prefix, 'lib') not in default_lib_dirs:
|
|
default_include_dirs.append(os.path.join(sys.prefix, 'include'))
|
|
default_src_dirs.append(os.path.join(sys.prefix, 'src'))
|
|
|
|
-default_lib_dirs = [_m for _m in default_lib_dirs if os.path.isdir(_m)]
|
|
-default_runtime_dirs = [_m for _m in default_runtime_dirs if os.path.isdir(_m)]
|
|
-default_include_dirs = [_m for _m in default_include_dirs if os.path.isdir(_m)]
|
|
-default_src_dirs = [_m for _m in default_src_dirs if os.path.isdir(_m)]
|
|
+default_lib_dirs = [] #[_m for _m in default_lib_dirs if os.path.isdir(_m)]
|
|
+default_runtime_dirs =[] # [_m for _m in default_runtime_dirs if os.path.isdir(_m)]
|
|
+default_include_dirs =[] # [_m for _m in default_include_dirs if os.path.isdir(_m)]
|
|
+default_src_dirs =[] # [_m for _m in default_src_dirs if os.path.isdir(_m)]
|
|
|
|
so_ext = get_shared_lib_extension()
|
|
|
|
@@ -814,7 +814,7 @@ class system_info(object):
|
|
path = self.get_paths(self.section, key)
|
|
if path == ['']:
|
|
path = []
|
|
- return path
|
|
+ return []
|
|
|
|
def get_include_dirs(self, key='include_dirs'):
|
|
return self.get_paths(self.section, key)
|