diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-06-24 14:07:32 -0400 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-06-24 14:07:32 -0400 |
commit | f990c3eee456a186548dcc48f1d2dca5d8172fe4 (patch) | |
tree | 17c9c457cafd5e665acd9d8051bdf77756111c4e | |
parent | c89aa2094170b2ffd7151187c1c092db2a178f44 (diff) | |
download | meson-f990c3eee456a186548dcc48f1d2dca5d8172fe4.zip meson-f990c3eee456a186548dcc48f1d2dca5d8172fe4.tar.gz meson-f990c3eee456a186548dcc48f1d2dca5d8172fe4.tar.bz2 |
typo
-rw-r--r-- | mesonbuild/dependencies/misc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index 483d73e..1bb1b6e 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -217,7 +217,7 @@ class MPIDependency(ExternalDependency): if not self.is_found and mesonlib.is_windows(): # only Intel Fortran compiler is compatible with Microsoft MPI at this time. - if language == 'fortran' and environment.detect_fortran_compiler(self.for_machine).name_string() != 'intel-ci': + if language == 'fortran' and environment.detect_fortran_compiler(self.for_machine).name_string() != 'intel-cl': return result = self._try_msmpi() if result is not None: |