diff options
Diffstat (limited to 'Source/cmFindProgramCommand.cxx')
-rw-r--r-- | Source/cmFindProgramCommand.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Source/cmFindProgramCommand.cxx b/Source/cmFindProgramCommand.cxx index 1ec03a9..84f7dab 100644 --- a/Source/cmFindProgramCommand.cxx +++ b/Source/cmFindProgramCommand.cxx @@ -30,12 +30,12 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string> const& argsIn) } std::string doc = "Path to a program."; size_t size = argsIn.size(); - std::vector<std::string> argst; + std::vector<std::string> args; for(unsigned int j = 0; j < size; ++j) { if(argsIn[j] != "DOC") { - argst.push_back(argsIn[j]); + args.push_back(argsIn[j]); } else { @@ -46,9 +46,6 @@ bool cmFindProgramCommand::InitialPass(std::vector<std::string> const& argsIn) break; } } - std::vector<std::string> args; - cmSystemTools::ExpandListArguments(argst, args); - std::vector<std::string>::iterator i = args.begin(); // Use the first argument as the name of something to be defined |