summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-07-11 17:01:02 (GMT)
committerBrad King <brad.king@kitware.com>2019-07-11 17:01:02 (GMT)
commit14f69fab54291838170e6e2e9988c81fa8c66a88 (patch)
treea411803f00afb7936262d8bd738865f9369be01d /Source
parent86ead0b5a32ee48907084a7cf85d00196cbf0366 (diff)
parentb0bcd4d7d2cb9defb790514375b78efbf60cc2e8 (diff)
downloadCMake-14f69fab54291838170e6e2e9988c81fa8c66a88.zip
CMake-14f69fab54291838170e6e2e9988c81fa8c66a88.tar.gz
CMake-14f69fab54291838170e6e2e9988c81fa8c66a88.tar.bz2
Merge branch 'fortran-submodule-cray' into release-3.15
Merge-request: !3504
Diffstat (limited to 'Source')
-rw-r--r--Source/cmFortranParserImpl.cxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmFortranParserImpl.cxx b/Source/cmFortranParserImpl.cxx
index 18e3c10..e8b1da8 100644
--- a/Source/cmFortranParserImpl.cxx
+++ b/Source/cmFortranParserImpl.cxx
@@ -79,7 +79,13 @@ std::string cmFortranParser_s::ModName(std::string const& mod_name) const
std::string cmFortranParser_s::SModName(std::string const& mod_name,
std::string const& sub_name) const
{
- return mod_name + this->Compiler.SModSep + sub_name + this->Compiler.SModExt;
+ std::string const& SModExt =
+ this->Compiler.SModExt.empty() ? ".mod" : this->Compiler.SModExt;
+ // An empty separator means that the compiler does not use a prefix.
+ if (this->Compiler.SModSep.empty()) {
+ return sub_name + SModExt;
+ }
+ return mod_name + this->Compiler.SModSep + sub_name + SModExt;
}
bool cmFortranParser_FilePush(cmFortranParser* parser, const char* fname)