ENH: make all errors fatal in message command

This commit is contained in:
Bill Hoffman 2006-01-25 08:39:31 -05:00
parent 07ef88c985
commit 0205c6bb1a
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ bool cmMessageCommand::InitialPass(std::vector<std::string> const& args)
cmSystemTools::Message(message.c_str());
}
}
if(fatal_error)
if(fatal_error || send_error)
{
cmSystemTools::SetFatalErrorOccured();
}