From 252faf5be8ffb23b5f335ebf10c7f1c3d3717ec5 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 12 Nov 2025 14:38:24 -0800 Subject: compilers: Remove Environment parameter from Compiler.find_library --- mesonbuild/dependencies/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/dependencies/python.py') diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py index c204a5197..93b915014 100644 --- a/mesonbuild/dependencies/python.py +++ b/mesonbuild/dependencies/python.py @@ -325,7 +325,7 @@ class _PythonDependencyBase(_Base): libname += self.variables['ABIFLAGS'] libdirs = [] - largs = self.clib_compiler.find_library(libname, environment, libdirs) + largs = self.clib_compiler.find_library(libname, libdirs) if largs is not None: self.link_args = largs self.is_found = True -- cgit v1.2.3