[cmake-commits] king committed cmDependsFortran.cxx 1.30 1.31

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Dec 19 16:35:11 EST 2007


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

Modified Files:
	cmDependsFortran.cxx 
Log Message:
BUG: cmDependsFortran should store the source file as a dependency of the object file when scanning for dependencies.


Index: cmDependsFortran.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmDependsFortran.cxx,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- cmDependsFortran.cxx	19 Dec 2007 19:28:46 -0000	1.30
+++ cmDependsFortran.cxx	19 Dec 2007 21:35:09 -0000	1.31
@@ -141,6 +141,7 @@
 
   // Write the include dependencies to the output stream.
   internalDepends << obj << std::endl;
+  internalDepends << " " << src << std::endl;
   for(std::set<cmStdString>::const_iterator i = parser.Includes.begin();
       i != parser.Includes.end(); ++i)
     {



More information about the Cmake-commits mailing list