aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'mesonbuild/dependencies/base.py')
-rw-r--r--mesonbuild/dependencies/base.py10
1 files changed, 8 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/base.py b/mesonbuild/dependencies/base.py
index e98c122..8bee2ce 100644
--- a/mesonbuild/dependencies/base.py
+++ b/mesonbuild/dependencies/base.py
@@ -1115,12 +1115,18 @@ class CMakeDependency(ExternalDependency):
def _cached_listdir(self, path: str) -> List[str]:
if path not in CMakeDependency.class_listdir_cache:
- CMakeDependency.class_listdir_cache[path] = list(map(lambda x: x.lower(), os.listdir(path)))
+ try:
+ CMakeDependency.class_listdir_cache[path] = list(map(lambda x: x.lower(), os.listdir(path)))
+ except:
+ CMakeDependency.class_listdir_cache[path] = []
return CMakeDependency.class_listdir_cache[path]
def _cached_isdir(self, path: str) -> bool:
if path not in CMakeDependency.class_isdir_cache:
- CMakeDependency.class_isdir_cache[path] = os.path.isdir(path)
+ try:
+ CMakeDependency.class_isdir_cache[path] = os.path.isdir(path)
+ except:
+ CMakeDependency.class_isdir_cache[path] = False
return CMakeDependency.class_isdir_cache[path]
def _preliminary_find_check(self, name: str, module_path: List[str]) -> bool: