diff options
author | Brad King <brad.king@kitware.com> | 2007-12-13 22:39:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-12-13 22:39:53 (GMT) |
commit | ebc036bbdaa602c9276ad91469a305b42fda7cbc (patch) | |
tree | fbb503a6ed359891d32a2642d7df4fa598b0a888 /Source | |
parent | fd33bf93a5e9d86ee249cc3fde22a221dfe861e8 (diff) | |
download | CMake-ebc036bbdaa602c9276ad91469a305b42fda7cbc.zip CMake-ebc036bbdaa602c9276ad91469a305b42fda7cbc.tar.gz CMake-ebc036bbdaa602c9276ad91469a305b42fda7cbc.tar.bz2 |
BUG: Fixed typo introduced by previous commit.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 6b89319..a3c95be 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -224,7 +224,7 @@ void cmake::CleanupCommandsAndMacros() for(RegisteredCommandsMap::iterator j = this->Commands.begin(); j != this->Commands.end(); ++j) { - if ( !j->second->IsA("cmMacroHelpperCommand") && + if ( !j->second->IsA("cmMacroHelperCommand") && !j->second->IsA("cmFunctionHelperCommand")) { commands.push_back(j->second); |