summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2011-01-13 22:32:33 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2011-01-13 22:56:18 (GMT)
commit8ed3c85c4749274cd30eef808d585634c38f3c72 (patch)
tree60bd4d14298cdcc0ee097fe10985de128e4ab8d4
parent729db484efac18194076c4020fe9b6a87f24ed22 (diff)
downloadCMake-8ed3c85c4749274cd30eef808d585634c38f3c72.zip
CMake-8ed3c85c4749274cd30eef808d585634c38f3c72.tar.gz
CMake-8ed3c85c4749274cd30eef808d585634c38f3c72.tar.bz2
Give a better message for unused variables
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index c5de2e8..548e59a 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -4321,7 +4321,7 @@ void cmake::RunCheckForUnusedVariables(const std::string& reason) const
if(!it->second)
{
std::string message = "CMake Warning: The variable, '" + it->first +
- "', given on the command line, was not used during the " + reason +
+ "', specified manually, was not used during the " + reason +
".";
cmSystemTools::Message(message.c_str());
}