Fix indent to please codestyle.

pull/5055/head
Antoine Jacoutot 6 years ago committed by Nirbheek Chauhan
parent d952e5ac4d
commit 28b54c1b66
  1. 6
      mesonbuild/compilers/compilers.py

@ -1486,9 +1486,9 @@ class GnuLikeCompiler(abc.ABC):
self.base_options = ['b_pch', 'b_lto', 'b_pgo', 'b_sanitize', 'b_coverage',
'b_ndebug', 'b_staticpic', 'b_pie']
if (not self.compiler_type.is_osx_compiler and
not self.compiler_type.is_windows_compiler and
not mesonlib.is_openbsd()):
self.base_options.append('b_lundef')
not self.compiler_type.is_windows_compiler and
not mesonlib.is_openbsd()):
self.base_options.append('b_lundef')
if not self.compiler_type.is_windows_compiler:
self.base_options.append('b_asneeded')
# All GCC-like backends can do assembly

Loading…
Cancel
Save