From 448710ba96195b857502fa07dd691874d3d47c6f Mon Sep 17 00:00:00 2001 From: Ernestas Kulik Date: Mon, 11 Dec 2017 20:28:42 +0200 Subject: Fix Vala thread flag breakage (#2756) --- mesonbuild/compilers/vala.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'mesonbuild') diff --git a/mesonbuild/compilers/vala.py b/mesonbuild/compilers/vala.py index b91da6d..9ab5c8a 100644 --- a/mesonbuild/compilers/vala.py +++ b/mesonbuild/compilers/vala.py @@ -95,8 +95,8 @@ class ValaCompiler(Compiler): mlog.debug('Searched {!r} and {!r} wasn\'t found'.format(extra_dirs, libname)) return None - def thread_flags(self): + def thread_flags(self, env): return [] - def thread_link_flags(self): + def thread_link_flags(self, env): return [] -- cgit v1.1