summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2010-09-01 15:26:58 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2010-09-01 17:09:08 (GMT)
commit2e78224509d6d0bbb7fdf28841f40a6b41c565b3 (patch)
tree116e05e35d51bf859bd678944a1715fcf21e4685 /Source
parent74997000c89ee3a82d68e4107d4a4264e7e57229 (diff)
downloadCMake-2e78224509d6d0bbb7fdf28841f40a6b41c565b3.zip
CMake-2e78224509d6d0bbb7fdf28841f40a6b41c565b3.tar.gz
CMake-2e78224509d6d0bbb7fdf28841f40a6b41c565b3.tar.bz2
Add a missing comma to the warning message
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 27bfbee..d4cabdb 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -208,8 +208,8 @@ cmake::~cmake()
{
if(!it->second)
{
- std::string message = "The variable, \"" + it->first + "\", given "
- "on the command line was not used within the build.";
+ std::string message = "warning: The variable, \"" + it->first + "\", given "
+ "on the command line, was not used within the build.";
cmSystemTools::Message(message.c_str());
}
}