diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-12 14:18:34 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | a66a14770bcbd98f1510ab7d669183e4b9d2f46d (patch) | |
| tree | aac6bc933188e66cb4d4a482b5ce7d8e8a9fa396 /mesonbuild/compilers/compilers.py | |
| parent | 6e081df405cfba85130ccd239f10ad769db8a34a (diff) | |
| download | meson-a66a14770bcbd98f1510ab7d669183e4b9d2f46d.tar.gz | |
compilers: Remove Environment parameter from Compiler.get_program_dirs
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
| -rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index e1086eb73..d5250f0e5 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -776,7 +776,7 @@ class Compiler(HoldableObject, metaclass=abc.ABCMeta): 'Language {} does not support get_library_naming.'.format( self.get_display_language())) - def get_program_dirs(self, env: 'Environment') -> T.List[str]: + def get_program_dirs(self) -> T.List[str]: return [] def has_multi_arguments(self, args: T.List[str]) -> T.Tuple[bool, bool]: |
