diff options
Diffstat (limited to 'Source/cmAbstractFilesCommand.cxx')
-rw-r--r-- | Source/cmAbstractFilesCommand.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmAbstractFilesCommand.cxx b/Source/cmAbstractFilesCommand.cxx index 32a6237..2bfb6b5 100644 --- a/Source/cmAbstractFilesCommand.cxx +++ b/Source/cmAbstractFilesCommand.cxx @@ -17,13 +17,16 @@ #include "cmAbstractFilesCommand.h" // cmAbstractFilesCommand -bool cmAbstractFilesCommand::InitialPass(std::vector<std::string> const& args) +bool cmAbstractFilesCommand::InitialPass(std::vector<std::string> const& argsIn) { - if(args.size() < 1 ) + if(argsIn.size() < 1 ) { this->SetError("called with incorrect number of arguments"); return false; } + std::vector<std::string> args; + cmSystemTools::ExpandListArguments(argsIn, args); + bool ret = true; std::string m = "could not find source file(s):\n"; |