diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-31 13:50:42 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-31 13:50:42 -0500 |
commit | f58d7df66a4cbfd171ae27eb0beaf12cf5355c08 (patch) | |
tree | ef63fcade1fda3aab970cc0566a66fa085edc1a2 /Source/cmIncludeDirectoryCommand.cxx | |
parent | 5e661c66393328896f7a24f50b9f84fe8dd5f029 (diff) | |
download | cmake-f58d7df66a4cbfd171ae27eb0beaf12cf5355c08.tar.gz |
ENH: add checking for NOTFOUND
Diffstat (limited to 'Source/cmIncludeDirectoryCommand.cxx')
-rw-r--r-- | Source/cmIncludeDirectoryCommand.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx index 0e43736dec..48bede4e89 100644 --- a/Source/cmIncludeDirectoryCommand.cxx +++ b/Source/cmIncludeDirectoryCommand.cxx @@ -35,11 +35,6 @@ bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& args for(; i != args.end(); ++i) { - if ( *i == "NOTFOUND" ) - { - this->SetError("CMake attempted to put directory that was not found to the list of include directories."); - return false; - } m_Makefile->AddIncludeDirectory((*i).c_str(), before); } return true; |