summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2001-08-28 22:27:02 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2001-08-28 22:27:02 (GMT)
commit91f27f6fbc3b1cc2423b09864438f59057e6665f (patch)
treec35e56884d1f498ccdf173ad00e20cf989f268da
parent247c1640dabcf73f0d904379040d70c270ecddf6 (diff)
downloadCMake-91f27f6fbc3b1cc2423b09864438f59057e6665f.zip
CMake-91f27f6fbc3b1cc2423b09864438f59057e6665f.tar.gz
CMake-91f27f6fbc3b1cc2423b09864438f59057e6665f.tar.bz2
BUG: put spaces in /I paths
-rw-r--r--Source/cmDSPWriter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx
index 602dad5..09f1ee8 100644
--- a/Source/cmDSPWriter.cxx
+++ b/Source/cmDSPWriter.cxx
@@ -72,7 +72,7 @@ void cmDSPWriter::OutputDSPFile()
std::vector<std::string>::iterator i;
for(i = includes.begin(); i != includes.end(); ++i)
{
- m_IncludeOptions += "/I ";
+ m_IncludeOptions += " /I ";
m_IncludeOptions += cmSystemTools::EscapeSpaces(i->c_str());
}