diff options
author | Ken Martin <ken.martin@kitware.com> | 2002-08-01 19:58:25 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2002-08-01 19:58:25 (GMT) |
commit | be3a15d45f5ad8d93dbccb9f8980044737faa9da (patch) | |
tree | 1047c6265b615e4135ccb2cf34e4fe4acb49dd56 /Source/cmLinkDirectoriesCommand.cxx | |
parent | fc7e4169e165fdd0008b3db116c7f4919dc38fd7 (diff) | |
download | CMake-be3a15d45f5ad8d93dbccb9f8980044737faa9da.zip CMake-be3a15d45f5ad8d93dbccb9f8980044737faa9da.tar.gz CMake-be3a15d45f5ad8d93dbccb9f8980044737faa9da.tar.bz2 |
no longer need an argument
Diffstat (limited to 'Source/cmLinkDirectoriesCommand.cxx')
-rw-r--r-- | Source/cmLinkDirectoriesCommand.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmLinkDirectoriesCommand.cxx b/Source/cmLinkDirectoriesCommand.cxx index 468fda2..9f336bc 100644 --- a/Source/cmLinkDirectoriesCommand.cxx +++ b/Source/cmLinkDirectoriesCommand.cxx @@ -21,8 +21,7 @@ bool cmLinkDirectoriesCommand::InitialPass(std::vector<std::string> const& argsI { 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); |