summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-03-20 14:11:52 (GMT)
committerBrad King <brad.king@kitware.com>2008-03-20 14:11:52 (GMT)
commit36c37a60b004c571bc4458dcefba2c6afcbd1c33 (patch)
tree3d73309530a380cede498171e596340a85160120 /Source
parent83d4f335cbf5f8a3c142ac4111dda1981e511fc3 (diff)
downloadCMake-36c37a60b004c571bc4458dcefba2c6afcbd1c33.zip
CMake-36c37a60b004c571bc4458dcefba2c6afcbd1c33.tar.gz
CMake-36c37a60b004c571bc4458dcefba2c6afcbd1c33.tar.bz2
ENH: Clarify end of (dev) warnings to explicitly state they are meant for project developers.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmake.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index f3c2faf..b045f1c 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -4185,7 +4185,8 @@ void cmake::IssueMessage(cmake::MessageType t, std::string const& text,
// Add a note about warning suppression.
if(t == cmake::AUTHOR_WARNING)
{
- msg << "This warning may be suppressed using the -Wno-dev option.";
+ msg <<
+ "This warning is for project developers. Use -Wno-dev to suppress it.";
}
// Add a terminating blank line.