diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-08-07 12:34:35 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-08-07 12:34:35 +0300 |
commit | a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d (patch) | |
tree | c04bf2434f84b6adecded34987b84d3aefa8ee92 /environment.py | |
parent | 3e29c4fccba670c582400086b0a17963e2cebd71 (diff) | |
download | meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.zip meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.tar.gz meson-a5863477f8fff72f1c5f782e5a7e9d07a46f3b4d.tar.bz2 |
Kill end of line whitespace dead.
Diffstat (limited to 'environment.py')
-rw-r--r-- | environment.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/environment.py b/environment.py index 7072005..fd68da4 100644 --- a/environment.py +++ b/environment.py @@ -1290,7 +1290,7 @@ def find_coverage_tools(): gcovr_exe = 'gcovr' lcov_exe = 'lcov' genhtml_exe = 'genhtml' - + if not exe_exists([gcovr_exe, '--version']): gcovr_exe = None if not exe_exists([lcov_exe, '--version']): @@ -1423,7 +1423,7 @@ class Environment(): def get_script_dir(self): return os.path.dirname(self.meson_script_file) - + def get_log_dir(self): return self.log_dir @@ -1470,7 +1470,7 @@ class Environment(): exe_wrap = None for compiler in compilers: try: - basename = os.path.basename(compiler).lower() + basename = os.path.basename(compiler).lower() if basename == 'cl' or basename == 'cl.exe': arg = '/?' else: @@ -1563,7 +1563,7 @@ class Environment(): is_cross = False exe_wrap = None for compiler in compilers: - basename = os.path.basename(compiler).lower() + basename = os.path.basename(compiler).lower() if basename == 'cl' or basename == 'cl.exe': arg = '/?' else: |