mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-11 16:50:50 -05:00
BUG: do escaped semi-colon better
This commit is contained in:
@@ -1862,7 +1862,7 @@ void cmSystemTools::ExpandListArguments(std::vector<std::string> const& argument
|
||||
std::string::size_type pos = newarg.find("\\;");
|
||||
if(pos != std::string::npos)
|
||||
{
|
||||
newarg[pos] = ' ';
|
||||
newarg.erase(pos, 1);
|
||||
}
|
||||
newargs.push_back(newarg);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user