diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-01 15:26:58 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2010-09-01 17:09:08 (GMT) |
commit | 2e78224509d6d0bbb7fdf28841f40a6b41c565b3 (patch) | |
tree | 116e05e35d51bf859bd678944a1715fcf21e4685 /Source | |
parent | 74997000c89ee3a82d68e4107d4a4264e7e57229 (diff) | |
download | CMake-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.cxx | 4 |
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()); } } |