pylint: enable implicit-str-concat

Which catches a very real bug. The zlib system dependency failed to work
on MSVC since initial implementation in commit
c1a3b37ab7 -- it looked for the wrong
name.
pull/11116/head
Dylan Baker 2 years ago committed by Eli Schwartz
parent 6190b6466e
commit e8727fc857
No known key found for this signature in database
GPG Key ID: CEB167EFB5722BD6
  1. 1
      .pylintrc
  2. 2
      mesonbuild/dependencies/dev.py

@ -20,7 +20,6 @@ disable=
duplicate-value,
exec-used,
fixme,
implicit-str-concat,
import-error,
import-outside-toplevel,
inconsistent-mro,

@ -500,7 +500,7 @@ class ZlibSystemDependency(SystemDependency):
self.link_args = ['-lz']
else:
if self.clib_compiler.get_argument_syntax() == 'msvc':
libs = ['zlib1' 'zlib']
libs = ['zlib1', 'zlib']
else:
libs = ['z']
for lib in libs:

Loading…
Cancel
Save