diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-07-22 14:01:53 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-07-22 14:01:53 (GMT) |
commit | e8dbdcaf0ca3ccf785bae6b2eeb49c03a0a2edf3 (patch) | |
tree | b7329a4271b215b35e335e370c4da0850573ad7c | |
parent | 353050fb4efaef81d85c4df917ad4c7131345aaf (diff) | |
download | CMake-e8dbdcaf0ca3ccf785bae6b2eeb49c03a0a2edf3.zip CMake-e8dbdcaf0ca3ccf785bae6b2eeb49c03a0a2edf3.tar.gz CMake-e8dbdcaf0ca3ccf785bae6b2eeb49c03a0a2edf3.tar.bz2 |
allows no arguments
-rw-r--r-- | Source/cmIncludeDirectoryCommand.cxx | 3 | ||||
-rw-r--r-- | Source/cmLinkLibrariesCommand.cxx | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmIncludeDirectoryCommand.cxx b/Source/cmIncludeDirectoryCommand.cxx index 48d51fd..f1d7ba9 100644 --- a/Source/cmIncludeDirectoryCommand.cxx +++ b/Source/cmIncludeDirectoryCommand.cxx @@ -21,8 +21,7 @@ bool cmIncludeDirectoryCommand::InitialPass(std::vector<std::string> const& args { if(argsIn.size() < 1 ) { - this->SetError("called with incorrect number of arguments"); - return false; + return true; } std::vector<std::string> args; cmSystemTools::ExpandListArguments(argsIn, args); diff --git a/Source/cmLinkLibrariesCommand.cxx b/Source/cmLinkLibrariesCommand.cxx index a97143f..ce26252 100644 --- a/Source/cmLinkLibrariesCommand.cxx +++ b/Source/cmLinkLibrariesCommand.cxx @@ -21,8 +21,7 @@ bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& argsIn) { if(argsIn.size() < 1 ) { - this->SetError("called with incorrect number of arguments"); - return false; + return true; } std::vector<std::string> args; cmSystemTools::ExpandListArguments(argsIn, args); |