diff options
author | Brad King <brad.king@kitware.com> | 2021-11-17 15:42:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-11-17 15:42:51 (GMT) |
commit | 80b6b201a6c025eb03a46a6dc91b49a646902d3c (patch) | |
tree | e678af84e5acb736b29b6ea7773904de2432e2d0 | |
parent | bb48c75817fd59be48b263dbc2556ffd9242ced7 (diff) | |
parent | 209b896f2c5e7c12e5a75a572469517a298081b2 (diff) | |
download | CMake-80b6b201a6c025eb03a46a6dc91b49a646902d3c.zip CMake-80b6b201a6c025eb03a46a6dc91b49a646902d3c.tar.gz CMake-80b6b201a6c025eb03a46a6dc91b49a646902d3c.tar.bz2 |
Merge branch 'IntelLLVM-Fortran-copy-mod' into release-3.21
Merge-request: !6740
-rw-r--r-- | Source/cmDependsFortran.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index bca26b9..a64dc27 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -648,7 +648,7 @@ bool cmDependsFortran::ModulesDiffer(const std::string& modFile, return true; } } - } else if (compilerId == "Intel") { + } else if (compilerId == "Intel" || compilerId == "IntelLLVM") { const char seq[2] = { '\n', '\0' }; const int seqlen = 2; |