diff options
author | Mike Sinkovsky <msink@permonline.ru> | 2017-01-09 15:14:24 +0500 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-11 12:33:27 -0500 |
commit | 5b626ab4cb8ee6024394945e716e3a5426216260 (patch) | |
tree | 4db6f656f69906e9f00c97a938a8da17548b7282 /mesonbuild/environment.py | |
parent | 0dd1e338989c4d0517eab8efbfa008e0e3e841a9 (diff) | |
download | meson-5b626ab4cb8ee6024394945e716e3a5426216260.zip meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.gz meson-5b626ab4cb8ee6024394945e716e3a5426216260.tar.bz2 |
style: [E1**] Indentation
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 70074ed..720546f 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -231,7 +231,7 @@ class Environment(): # Versioning is added to these names in the backends as-needed. cross = self.is_cross_build() if (not cross and mesonlib.is_windows()) \ - or (cross and self.cross_info.has_host() and self.cross_info.config['host_machine']['system'] == 'windows'): + or (cross and self.cross_info.has_host() and self.cross_info.config['host_machine']['system'] == 'windows'): self.exe_suffix = 'exe' self.object_suffix = 'obj' self.win_libdir_layout = True |