diff options
| author | Charles Brunet <charles.brunet@optelgroup.com> | 2023-03-13 09:14:54 -0400 |
|---|---|---|
| committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-03-16 08:27:06 -0400 |
| commit | a5a7b29a665d1ef82fc606b5ee920e284e3ef1b7 (patch) | |
| tree | 446030a9ab828091fb17cf53fb97be53b01d9acf /mesonbuild/compilers/vala.py | |
| parent | ef5da765af7c5687228ed6e77a19d20bc474c4a4 (diff) | |
| download | meson-a5a7b29a665d1ef82fc606b5ee920e284e3ef1b7.tar.gz | |
prevent lib prefix warning from pkg-config
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 e56a9fc4b..23b01a3f1 100644 --- a/mesonbuild/compilers/vala.py +++ b/mesonbuild/compilers/vala.py @@ -111,7 +111,7 @@ class ValaCompiler(Compiler): return [] def find_library(self, libname: str, env: 'Environment', extra_dirs: T.List[str], - libtype: LibType = LibType.PREFER_SHARED) -> T.Optional[T.List[str]]: + libtype: LibType = LibType.PREFER_SHARED, lib_prefix_warning: bool = True) -> 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 |
