summaryrefslogtreecommitdiffstats
path: root/Source/cmDSPWriter.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-03-14 19:59:00 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2002-03-14 19:59:00 (GMT)
commitd9813478665a549116891e68b26bb394f56dbe4e (patch)
treeda21c5ae036f0c6721516bf54299311953c7353a /Source/cmDSPWriter.cxx
parent15d365cdddf67fad82f80b1b0a028a6c1df2f6a3 (diff)
downloadCMake-d9813478665a549116891e68b26bb394f56dbe4e.zip
CMake-d9813478665a549116891e68b26bb394f56dbe4e.tar.gz
CMake-d9813478665a549116891e68b26bb394f56dbe4e.tar.bz2
BUG: fix for paths with spaces
Diffstat (limited to 'Source/cmDSPWriter.cxx')
-rw-r--r--Source/cmDSPWriter.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx
index 1fa6bce..6eacd98 100644
--- a/Source/cmDSPWriter.cxx
+++ b/Source/cmDSPWriter.cxx
@@ -151,19 +151,18 @@ void cmDSPWriter::AddDSPBuildRule(cmSourceGroup& sourceGroup)
m_Makefile->ExpandVariablesInString(dsprule);
dsprule = cmSystemTools::ConvertToOutputPath(dsprule.c_str());
std::string args = makefileIn;
- args += " -H\"";
+ args += " -H";
args +=
cmSystemTools::ConvertToOutputPath(m_Makefile->GetHomeDirectory());
- args += "\" -S\"";
+ args += " -S";
args +=
cmSystemTools::ConvertToOutputPath(m_Makefile->GetStartDirectory());
- args += "\" -O\"";
+ args += " -O";
args +=
cmSystemTools::ConvertToOutputPath(m_Makefile->GetStartOutputDirectory());
- args += "\" -B\"";
+ args += " -B";
args +=
cmSystemTools::ConvertToOutputPath(m_Makefile->GetHomeOutputDirectory());
- args += "\"";
m_Makefile->ExpandVariablesInString(args);
std::string configFile =