diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-18 17:12:36 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-04-18 17:12:36 (GMT) |
commit | dc15248b40672ddff590d6aedbb0bad9e0ddae4b (patch) | |
tree | ebfb3a9c2533624cc78095f5f27f1dfd90c49873 /Source/cmSystemTools.cxx | |
parent | 72022ac27ba0ec4476a468b789c600f00edab669 (diff) | |
download | CMake-dc15248b40672ddff590d6aedbb0bad9e0ddae4b.zip CMake-dc15248b40672ddff590d6aedbb0bad9e0ddae4b.tar.gz CMake-dc15248b40672ddff590d6aedbb0bad9e0ddae4b.tar.bz2 |
BUG: do escaped semi-colon better
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 27b53d3..1f68b70 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -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); } |