summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-11-18 13:58:58 +0000
committerKitware Robot <kwrobot@kitware.com>2021-11-18 08:59:17 -0500
commitcb39d50e2187b2ff6d723388cb703eff2511e596 (patch)
tree90ebf7d78ada576ab9c0f528920cc241c947ad35 /Source
parente64a0b6c3d4b83898a28584365c08ca8e493f8df (diff)
parent209b896f2c5e7c12e5a75a572469517a298081b2 (diff)
downloadcmake-cb39d50e2187b2ff6d723388cb703eff2511e596.tar.gz
Merge topic 'IntelLLVM-Fortran-copy-mod' into release-3.22
209b896f2c IntelLLVM: Enable Fortran module rebuild avoidance in Makefile generators Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6740
Diffstat (limited to 'Source')
-rw-r--r--Source/cmDependsFortran.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx
index 8456776c00..d5e54ae370 100644
--- a/Source/cmDependsFortran.cxx
+++ b/Source/cmDependsFortran.cxx
@@ -659,7 +659,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;