summaryrefslogtreecommitdiff
path: root/mesonbuild/dependencies
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2025-11-12 09:53:44 -0800
committerDylan Baker <dylan@pnwbakers.com>2025-11-19 10:48:48 -0800
commite8286ab9a102823cb256bd859de1a9082679e79b (patch)
treedd8d0a28523484878c920b46a891b2440f0b925a /mesonbuild/dependencies
parentcd4293b54a624026dcbc289b22fde9ef37b8c7eb (diff)
downloadmeson-e8286ab9a102823cb256bd859de1a9082679e79b.tar.gz
compilers: Remove Environment parameter from Compiler.get_library_dirs
Diffstat (limited to 'mesonbuild/dependencies')
-rw-r--r--mesonbuild/dependencies/boost.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/boost.py b/mesonbuild/dependencies/boost.py
index 517d1e832..1aeb451f1 100644
--- a/mesonbuild/dependencies/boost.py
+++ b/mesonbuild/dependencies/boost.py
@@ -557,7 +557,7 @@ class BoostDependency(SystemDependency):
# given root path
if use_system:
- system_dirs_t = self.clib_compiler.get_library_dirs(self.env)
+ system_dirs_t = self.clib_compiler.get_library_dirs()
system_dirs = [Path(x) for x in system_dirs_t]
system_dirs = [x.resolve() for x in system_dirs if x.exists()]
system_dirs = [x for x in system_dirs if mesonlib.path_is_in_root(x, root)]