summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-11-12 21:58:05 (GMT)
committerBrad King <brad.king@kitware.com>2007-11-12 21:58:05 (GMT)
commita546ba7ed496312137202cdb356ebf739350cf5e (patch)
treea61e61fbfa80dc811d05528198e407c133f91da0 /Source/cmake.cxx
parentea2b389a17f3f0d537e5d539ce7dfffac63b1075 (diff)
downloadCMake-a546ba7ed496312137202cdb356ebf739350cf5e.zip
CMake-a546ba7ed496312137202cdb356ebf739350cf5e.tar.gz
CMake-a546ba7ed496312137202cdb356ebf739350cf5e.tar.bz2
BUG: Fix messages for time stamp file recreation.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 166e71a..dad2980 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -3468,14 +3468,14 @@ static bool cmakeCheckStampFile(const char* stampName)
// 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