diff options
| author | David Seifert <soap@gentoo.org> | 2025-05-19 12:11:32 +0200 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2025-05-21 10:48:58 -0400 |
| commit | 595398df34e76766004080912e7ca8a2f9ea6c5d (patch) | |
| tree | 029a2067bb91803e33a80baa9e471354483c5199 /mesonbuild/compilers/vala.py | |
| parent | cfdc61141790a3c2df30ad554d5b40cd551f6f36 (diff) | |
| download | meson-595398df34e76766004080912e7ca8a2f9ea6c5d.tar.gz | |
compilers: add option for ignoring system dirs
Diffstat (limited to 'mesonbuild/compilers/vala.py')
| -rw-r--r-- | mesonbuild/compilers/vala.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/vala.py b/mesonbuild/compilers/vala.py index 28861a60d..bbaefedb6 100644 --- a/mesonbuild/compilers/vala.py +++ b/mesonbuild/compilers/vala.py @@ -113,7 +113,7 @@ class ValaCompiler(Compiler): raise EnvironmentException(msg) def find_library(self, libname: str, env: 'Environment', extra_dirs: T.List[str], - libtype: LibType = LibType.PREFER_SHARED, lib_prefix_warning: bool = True) -> T.Optional[T.List[str]]: + libtype: LibType = LibType.PREFER_SHARED, lib_prefix_warning: bool = True, ignore_system_dirs: bool = False) -> T.Optional[T.List[str]]: if extra_dirs and isinstance(extra_dirs, str): extra_dirs = [extra_dirs] # Valac always looks in the default vapi dir, so only search there if |
