diff options
author | Antoine Jacoutot <ajacoutot@openbsd.org> | 2019-03-10 15:49:18 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2019-03-11 11:38:31 +0000 |
commit | 28b54c1b660dda5e01401b54554dc2df10afcf79 (patch) | |
tree | 3c008f7f87c8992711e1c2cd52b9a6ffcfb27935 /mesonbuild/compilers/compilers.py | |
parent | d952e5ac4d5dee037df80633ceedbad1bfc8eabb (diff) | |
download | meson-28b54c1b660dda5e01401b54554dc2df10afcf79.zip meson-28b54c1b660dda5e01401b54554dc2df10afcf79.tar.gz meson-28b54c1b660dda5e01401b54554dc2df10afcf79.tar.bz2 |
Fix indent to please codestyle.
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-rw-r--r-- | mesonbuild/compilers/compilers.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 66604a2..94ebf16 100644 --- a/mesonbuild/compilers/compilers.py +++ b/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 |