diff options
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDependsFortran.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 3b2bc4a..27ec340 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -504,7 +504,10 @@ void cmDependsFortranParser_RuleInclude(cmDependsFortranParser* parser, void cmDependsFortranParser_RuleModule(cmDependsFortranParser* parser, const char* name) { - parser->Provides.insert(cmSystemTools::LowerCase(name) ); + if(!parser->InInterface ) + { + parser->Provides.insert(cmSystemTools::LowerCase(name)); + } } //---------------------------------------------------------------------------- |