[cmake-commits] king committed cmDependsFortran.cxx 1.19 1.20

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Aug 29 11:30:55 EDT 2007


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv31209

Modified Files:
	cmDependsFortran.cxx 
Log Message:
BUG: Do not write symbolic make dependencies into depends.internal.


Index: cmDependsFortran.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDependsFortran.cxx,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- cmDependsFortran.cxx	10 May 2006 18:54:46 -0000	1.19
+++ cmDependsFortran.cxx	29 Aug 2007 15:30:53 -0000	1.20
@@ -139,7 +139,6 @@
   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 @@
       // 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.



More information about the Cmake-commits mailing list