summaryrefslogtreecommitdiff
path: root/Source/cmMessageCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2009-03-06 12:06:43 -0500
committerBrad King <brad.king@kitware.com>2009-03-06 12:06:43 -0500
commitb04c37c700d8da00849a65203c19067122340391 (patch)
tree0973500b73ad9c94a5145e80114e0ee8f2889ebd /Source/cmMessageCommand.h
parentca3b93d9c6a816afd7a07bf218c8884510219cf4 (diff)
downloadcmake-b04c37c700d8da00849a65203c19067122340391.tar.gz
BUG: Fix message(SEND_ERROR) to continue
During testing of the new message() signatures I mistakenly concluded that SEND_ERROR stops processing. The corresponding commit enforced this wrong behavior. This restores the correct behavior and fixes the documentation accordingly.
Diffstat (limited to 'Source/cmMessageCommand.h')
-rw-r--r--Source/cmMessageCommand.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMessageCommand.h b/Source/cmMessageCommand.h
index f2496f48d0..068dd577ac 100644
--- a/Source/cmMessageCommand.h
+++ b/Source/cmMessageCommand.h
@@ -72,8 +72,8 @@ public:
" STATUS = Incidental information\n"
" WARNING = CMake Warning, continue processing\n"
" AUTHOR_WARNING = CMake Warning (dev), continue processing\n"
+ " SEND_ERROR = CMake Error, continue but skip generation\n"
" FATAL_ERROR = CMake Error, stop all processing\n"
- " SEND_ERROR = CMake Error, stop all processing (legacy)\n"
"The CMake command-line tool displays STATUS messages on stdout "
"and all other message types on stderr. "
"The CMake GUI displays all messages in its log area. "