diff options
author | Brad King <brad.king@kitware.com> | 2007-08-29 15:30:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-08-29 15:30:53 (GMT) |
commit | fb43c6447606913ed0afca03c5018e6339e191ea (patch) | |
tree | e41746257e0d36c2cfdc574a5d0c227f9329573f /Source/cmDependsFortran.cxx | |
parent | a392c7b5b19923ed88ff0b7ad7d2e578ad58ed1a (diff) | |
download | CMake-fb43c6447606913ed0afca03c5018e6339e191ea.zip CMake-fb43c6447606913ed0afca03c5018e6339e191ea.tar.gz CMake-fb43c6447606913ed0afca03c5018e6339e191ea.tar.bz2 |
BUG: Do not write symbolic make dependencies into depends.internal.
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-rw-r--r-- | Source/cmDependsFortran.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index e1ed81c..434ead3 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -139,7 +139,6 @@ bool cmDependsFortran::WriteDependencies(const char *src, const char *obj, makeDepends << std::endl; // Write module requirements to the output stream. - internalDepends << obj << ".requires" << std::endl; for(std::set<cmStdString>::const_iterator i = parser.Requires.begin(); i != parser.Requires.end(); ++i) { @@ -149,18 +148,15 @@ bool cmDependsFortran::WriteDependencies(const char *src, const char *obj, // since we require some things add them to our list of requirements makeDepends << obj << ".requires: " << i->c_str() << ".mod.proxy" << std::endl; - internalDepends << " " << i->c_str() << ".mod.proxy" << std::endl; } } // Write provided modules to the output stream. - internalDepends << obj << ".mod.proxy" << std::endl; for(std::set<cmStdString>::const_iterator i = parser.Provides.begin(); i != parser.Provides.end(); ++i) { makeDepends << i->c_str() << ".mod.proxy: " << obj << ".provides" << std::endl; - internalDepends << " " << i->c_str() << ".provides" << std::endl; } // If any modules are provided then they must be converted to stamp files. |