BUG: do escaped semi-colon better
This commit is contained in:
parent
72022ac27b
commit
dc15248b40
|
@ -1862,7 +1862,7 @@ void cmSystemTools::ExpandListArguments(std::vector<std::string> const& argument
|
||||||
std::string::size_type pos = newarg.find("\\;");
|
std::string::size_type pos = newarg.find("\\;");
|
||||||
if(pos != std::string::npos)
|
if(pos != std::string::npos)
|
||||||
{
|
{
|
||||||
newarg[pos] = ' ';
|
newarg.erase(pos, 1);
|
||||||
}
|
}
|
||||||
newargs.push_back(newarg);
|
newargs.push_back(newarg);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue