diff options
author | makise-homura <akemi_homura@kurisa.ch> | 2019-04-19 18:03:17 +0300 |
---|---|---|
committer | makise-homura <akemi_homura@kurisa.ch> | 2019-04-19 18:03:17 +0300 |
commit | ebe78a14e6f05884e4efb4b4ed1f3ae4d0241fa9 (patch) | |
tree | 9884723f532459089c578a5d93a3467455ed7eca /mesonbuild/compilers | |
parent | 54f9ec45104bd01c5679d4d1468ae96dec9e1fba (diff) | |
download | meson-ebe78a14e6f05884e4efb4b4ed1f3ae4d0241fa9.zip meson-ebe78a14e6f05884e4efb4b4ed1f3ae4d0241fa9.tar.gz meson-ebe78a14e6f05884e4efb4b4ed1f3ae4d0241fa9.tar.bz2 |
Making number of arguments consistent in get_library_dirs
Diffstat (limited to 'mesonbuild/compilers')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index e29ca55..3459a8f 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] |