summaryrefslogtreecommitdiffstats
path: root/Source/cmEndIfCommand.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2002-09-10 14:16:50 (GMT)
committerKen Martin <ken.martin@kitware.com>2002-09-10 14:16:50 (GMT)
commitd7a1063b209fd2649cca5e98353c71ff560f6e7a (patch)
treea119007c292a031d585a0552d89b3f12acf1ad8b /Source/cmEndIfCommand.cxx
parentc2cdd8f8d35d933c5857fda761f8778e6961f861 (diff)
downloadCMake-d7a1063b209fd2649cca5e98353c71ff560f6e7a.zip
CMake-d7a1063b209fd2649cca5e98353c71ff560f6e7a.tar.gz
CMake-d7a1063b209fd2649cca5e98353c71ff560f6e7a.tar.bz2
better error checking on If statements
Diffstat (limited to 'Source/cmEndIfCommand.cxx')
-rw-r--r--Source/cmEndIfCommand.cxx11
1 files changed, 2 insertions, 9 deletions
diff --git a/Source/cmEndIfCommand.cxx b/Source/cmEndIfCommand.cxx
index 7b46eaa..f91c38e 100644
--- a/Source/cmEndIfCommand.cxx
+++ b/Source/cmEndIfCommand.cxx
@@ -19,14 +19,7 @@
bool cmEndIfCommand::InitialPass(std::vector<std::string> const& args)
{
- if(args.size() < 1 )
- {
- this->SetError("called with incorrect number of arguments");
- return false;
- }
- // remove any function blockers for this define
- m_Makefile->RemoveFunctionBlocker("ENDIF",args);
-
- return true;
+ this->SetError("An ENDIF command was found outside of a proper IF ENDIF structure. Or its arguments did not match the opening IF command.");
+ return false;
}