diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-09-10 19:11:15 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-09-10 19:11:15 (GMT) |
commit | 0fe42a98572f2339ee763a475ecdd003c8a80ac8 (patch) | |
tree | 26a6c316b460bbb65de5a7d4a826d38ae9086696 /Source/cmDSPWriter.cxx | |
parent | 5acb894e585f6f65741c102e74fd826b2250eb11 (diff) | |
download | CMake-0fe42a98572f2339ee763a475ecdd003c8a80ac8.zip CMake-0fe42a98572f2339ee763a475ecdd003c8a80ac8.tar.gz CMake-0fe42a98572f2339ee763a475ecdd003c8a80ac8.tar.bz2 |
various windows fixes
Diffstat (limited to 'Source/cmDSPWriter.cxx')
-rw-r--r-- | Source/cmDSPWriter.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx index 57c9e46..73da668 100644 --- a/Source/cmDSPWriter.cxx +++ b/Source/cmDSPWriter.cxx @@ -266,6 +266,7 @@ void cmDSPWriter::WriteDSPFile(std::ostream& fout, totalCommandStr += "\n\t"; temp= c->second.m_Command; cmSystemTools::ConvertToWindowsSlashes(temp); + temp = cmSystemTools::EscapeSpaces(temp.c_str()); totalCommandStr += temp; totalCommandStr += " "; totalCommandStr += c->second.m_Arguments; |