From ebe78a14e6f05884e4efb4b4ed1f3ae4d0241fa9 Mon Sep 17 00:00:00 2001 From: makise-homura Date: Fri, 19 Apr 2019 18:03:17 +0300 Subject: [PATCH] Making number of arguments consistent in get_library_dirs --- mesonbuild/compilers/compilers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index e29ca5579..3459a8f4f 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1736,7 +1736,7 @@ class ElbrusCompiler(GnuCompiler): # FIXME: use _build_wrapper to call this so that linker flags from the env # get applied - def get_library_dirs(self, env): + def get_library_dirs(self, env, elf_class = None): os_env = os.environ.copy() os_env['LC_ALL'] = 'C' stdo = Popen_safe(self.exelist + ['--print-search-dirs'], env=os_env)[1]