summaryrefslogtreecommitdiff
path: root/mesonbuild/build.py
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/build.py
parentcd4293b54a624026dcbc289b22fde9ef37b8c7eb (diff)
downloadmeson-e8286ab9a102823cb256bd859de1a9082679e79b.tar.gz
compilers: Remove Environment parameter from Compiler.get_library_dirs
Diffstat (limited to 'mesonbuild/build.py')
-rw-r--r--mesonbuild/build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/build.py b/mesonbuild/build.py
index 0ad679450..7562fea53 100644
--- a/mesonbuild/build.py
+++ b/mesonbuild/build.py
@@ -1838,7 +1838,7 @@ class BuildTarget(Target):
system_dirs = set()
if exclude_system:
for cc in self.compilers.values():
- system_dirs.update(cc.get_library_dirs(self.environment))
+ system_dirs.update(cc.get_library_dirs())
external_rpaths = self.get_external_rpath_dirs()
build_to_src = relpath(self.environment.get_source_dir(),