aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/modules/python.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2018-07-19 14:22:32 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2018-07-19 14:22:32 +0300
commitf90d3c19fd00fe62c1b815357f76a5891f338ea4 (patch)
tree401ecc65ce49d36075b8e9148ea0e753ed64ab22 /mesonbuild/modules/python.py
parentc1fc55e6f6acf8289e673301be2c474e946ce305 (diff)
downloadmeson-f90d3c19fd00fe62c1b815357f76a5891f338ea4.zip
meson-f90d3c19fd00fe62c1b815357f76a5891f338ea4.tar.gz
meson-f90d3c19fd00fe62c1b815357f76a5891f338ea4.tar.bz2
Use option args in find_library.useargsintests
Diffstat (limited to 'mesonbuild/modules/python.py')
-rw-r--r--mesonbuild/modules/python.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/modules/python.py b/mesonbuild/modules/python.py
index 9a90fe9..f821711 100644
--- a/mesonbuild/modules/python.py
+++ b/mesonbuild/modules/python.py
@@ -123,7 +123,7 @@ class PythonDependency(ExternalDependency):
libname += self.variables['ABIFLAGS']
libdirs = []
- largs = self.clib_compiler.find_library(libname, environment, libdirs)
+ largs = self.clib_compiler.find_library(libname, environment, libdirs, [])
self.is_found = largs is not None