From d9813478665a549116891e68b26bb394f56dbe4e Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Thu, 14 Mar 2002 14:59:00 -0500 Subject: [PATCH] BUG: fix for paths with spaces --- Source/cmDSPWriter.cxx | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/cmDSPWriter.cxx b/Source/cmDSPWriter.cxx index 1fa6bce56..6eacd98dc 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 =