Browse Source

ENH: make all errors fatal in message command

Bill Hoffman 20 years ago
parent
commit
0205c6bb1a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmMessageCommand.cxx

+ 1 - 1
Source/cmMessageCommand.cxx

@@ -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();
     }