diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2016-04-03 18:00:41 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2016-04-03 18:00:41 +0300 |
commit | e0792295bc6828ff9c603e8670628bce93ff248a (patch) | |
tree | 42e43df325726e380db946f298b06003d104d675 /mesonbuild/environment.py | |
parent | 4352398caf518da858f0b4bdf053747efcf3a6a1 (diff) | |
download | meson-e0792295bc6828ff9c603e8670628bce93ff248a.zip meson-e0792295bc6828ff9c603e8670628bce93ff248a.tar.gz meson-e0792295bc6828ff9c603e8670628bce93ff248a.tar.bz2 |
Whitespace fixing.
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index 6d217f2..df848f8 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -266,32 +266,32 @@ class Environment(): version = vmatch.group(0) if 'GNU Fortran' in out: - return GnuFortranCompiler([compiler], version, GCC_STANDARD, is_cross, exe_wrap) + return GnuFortranCompiler([compiler], version, GCC_STANDARD, is_cross, exe_wrap) if 'G95' in out: - return G95FortranCompiler([compiler], version, is_cross, exe_wrap) + return G95FortranCompiler([compiler], version, is_cross, exe_wrap) if 'Sun Fortran' in err: - version = 'unknown version' - vmatch = re.search(Environment.version_regex, err) - if vmatch: - version = vmatch.group(0) - return SunFortranCompiler([compiler], version, is_cross, exe_wrap) + version = 'unknown version' + vmatch = re.search(Environment.version_regex, err) + if vmatch: + version = vmatch.group(0) + return SunFortranCompiler([compiler], version, is_cross, exe_wrap) if 'ifort (IFORT)' in out: - return IntelFortranCompiler([compiler], version, is_cross, exe_wrap) - + return IntelFortranCompiler([compiler], version, is_cross, exe_wrap) + if 'PathScale EKOPath(tm)' in err: - return PathScaleFortranCompiler([compiler], version, is_cross, exe_wrap) + return PathScaleFortranCompiler([compiler], version, is_cross, exe_wrap) if 'pgf90' in out: - return PGIFortranCompiler([compiler], version, is_cross, exe_wrap) + return PGIFortranCompiler([compiler], version, is_cross, exe_wrap) if 'Open64 Compiler Suite' in err: - return Open64FortranCompiler([compiler], version, is_cross, exe_wrap) + return Open64FortranCompiler([compiler], version, is_cross, exe_wrap) if 'NAG Fortran' in err: - return NAGFortranCompiler([compiler], version, is_cross, exe_wrap) + return NAGFortranCompiler([compiler], version, is_cross, exe_wrap) raise EnvironmentException('Unknown compiler(s): "' + ', '.join(compilers) + '"') |