diff options
author | Brad King <brad.king@kitware.com> | 2021-11-17 15:42:37 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-11-17 15:42:37 (GMT) |
commit | 7cc7f9aa2637165d837c98c23ab0952303a1ac28 (patch) | |
tree | e315dc4f56d14fcb9075efacc55b8b787ce06e63 /Source | |
parent | 09ef62fd988826b32f6d6e83992325d35d2f4b5b (diff) | |
parent | 209b896f2c5e7c12e5a75a572469517a298081b2 (diff) | |
download | CMake-7cc7f9aa2637165d837c98c23ab0952303a1ac28.zip CMake-7cc7f9aa2637165d837c98c23ab0952303a1ac28.tar.gz CMake-7cc7f9aa2637165d837c98c23ab0952303a1ac28.tar.bz2 |
Merge branch 'IntelLLVM-Fortran-copy-mod' into release-3.20
Merge-request: !6740
Diffstat (limited to 'Source')
-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 1a06f31..74b5ddd 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -653,7 +653,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; |