diff options
Diffstat (limited to 'Source/cmElseCommand.cxx')
-rw-r--r-- | Source/cmElseCommand.cxx | 26 |
1 files changed, 2 insertions, 24 deletions
diff --git a/Source/cmElseCommand.cxx b/Source/cmElseCommand.cxx index 2e309dd..661616c 100644 --- a/Source/cmElseCommand.cxx +++ b/Source/cmElseCommand.cxx @@ -19,28 +19,6 @@ bool cmElseCommand::InitialPass(std::vector<std::string> const& args) { - bool isValid; - bool isTrue = cmIfCommand::IsTrue(args,isValid,m_Makefile); - - if (!isValid) - { - this->SetError("An ELSE command had incorrect arguments"); - return false; - } - - // first remove any function blockers for the IF - m_Makefile->RemoveFunctionBlocker("ELSE",args); - - // if is true create a blocker for the else - cmIfFunctionBlocker *f = new cmIfFunctionBlocker(); - f->m_IsBlocking = isTrue; - for(std::vector<std::string>::const_iterator j = args.begin(); - j != args.end(); ++j) - { - f->m_Args.push_back(*j); - } - m_Makefile->AddFunctionBlocker(f); - - return true; + this->SetError("An ELSE command was found outside of a proper IF ENDIF structure. Or its arguments did not match the opening IF command."); + return false; } - |