[cmake-commits] king committed cmake.cxx 1.330 1.331
cmake-commits at cmake.org
cmake-commits at cmake.org
Mon Nov 12 16:58:07 EST 2007
Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv17119
Modified Files:
cmake.cxx
Log Message:
BUG: Fix messages for time stamp file recreation.
Index: cmake.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmake.cxx,v
retrieving revision 1.330
retrieving revision 1.331
diff -u -d -r1.330 -r1.331
--- cmake.cxx 10 Nov 2007 13:15:13 -0000 1.330
+++ cmake.cxx 12 Nov 2007 21:58:05 -0000 1.331
@@ -3468,14 +3468,14 @@
// The build system is up to date. The stamp file has been removed
// by the VS IDE due to a "rebuild" request. Just restore it.
std::ofstream stamp(stampName);
- stamp << "# CMake timestamp file for corresponding VS project.\n";
+ stamp << "# CMake generation timestamp file this directory.\n";
if(stamp)
{
// Notify the user why CMake is not re-running. It is safe to
// just print to stdout here because this code is only reachable
// through an undocumented flag used by the VS generator.
std::cout << "CMake does not need to re-run because the "
- << "project timestamp is up-to-date.\n";
+ << "generation timestamp is up-to-date.\n";
return true;
}
else
More information about the Cmake-commits
mailing list