mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-21 22:50:26 -06:00
make sure ; expansion is done in all commands
This commit is contained in:
@@ -27,12 +27,12 @@ bool cmFindLibraryCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
}
|
||||
std::string helpString;
|
||||
size_t size = argsIn.size();
|
||||
std::vector<std::string> args;
|
||||
std::vector<std::string> argst;
|
||||
for(unsigned int j = 0; j < size; ++j)
|
||||
{
|
||||
if(argsIn[j] != "DOC")
|
||||
{
|
||||
args.push_back(argsIn[j]);
|
||||
argst.push_back(argsIn[j]);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -43,6 +43,8 @@ bool cmFindLibraryCommand::InitialPass(std::vector<std::string> const& argsIn)
|
||||
break;
|
||||
}
|
||||
}
|
||||
std::vector<std::string> args;
|
||||
cmSystemTools::ExpandListArguments(argst, args);
|
||||
|
||||
std::vector<std::string> path;
|
||||
std::vector<std::string> names;
|
||||
|
||||
Reference in New Issue
Block a user