BUG: fix for paths with spaces
This commit is contained in:
parent
15d365cddd
commit
d981347866
|
@ -151,19 +151,18 @@ void cmDSPWriter::AddDSPBuildRule(cmSourceGroup& sourceGroup)
|
||||||
m_Makefile->ExpandVariablesInString(dsprule);
|
m_Makefile->ExpandVariablesInString(dsprule);
|
||||||
dsprule = cmSystemTools::ConvertToOutputPath(dsprule.c_str());
|
dsprule = cmSystemTools::ConvertToOutputPath(dsprule.c_str());
|
||||||
std::string args = makefileIn;
|
std::string args = makefileIn;
|
||||||
args += " -H\"";
|
args += " -H";
|
||||||
args +=
|
args +=
|
||||||
cmSystemTools::ConvertToOutputPath(m_Makefile->GetHomeDirectory());
|
cmSystemTools::ConvertToOutputPath(m_Makefile->GetHomeDirectory());
|
||||||
args += "\" -S\"";
|
args += " -S";
|
||||||
args +=
|
args +=
|
||||||
cmSystemTools::ConvertToOutputPath(m_Makefile->GetStartDirectory());
|
cmSystemTools::ConvertToOutputPath(m_Makefile->GetStartDirectory());
|
||||||
args += "\" -O\"";
|
args += " -O";
|
||||||
args +=
|
args +=
|
||||||
cmSystemTools::ConvertToOutputPath(m_Makefile->GetStartOutputDirectory());
|
cmSystemTools::ConvertToOutputPath(m_Makefile->GetStartOutputDirectory());
|
||||||
args += "\" -B\"";
|
args += " -B";
|
||||||
args +=
|
args +=
|
||||||
cmSystemTools::ConvertToOutputPath(m_Makefile->GetHomeOutputDirectory());
|
cmSystemTools::ConvertToOutputPath(m_Makefile->GetHomeOutputDirectory());
|
||||||
args += "\"";
|
|
||||||
m_Makefile->ExpandVariablesInString(args);
|
m_Makefile->ExpandVariablesInString(args);
|
||||||
|
|
||||||
std::string configFile =
|
std::string configFile =
|
||||||
|
|
Loading…
Reference in New Issue