ERR: Added double-quotes around command name before arguments are appended.
This commit is contained in:
parent
a04fa127a8
commit
d1e05d738f
|
@ -62,7 +62,7 @@ bool cmCablePackageCommand::Invoke(std::vector<std::string>& args)
|
||||||
m_Makefile->ExpandVariablesInString(command);
|
m_Makefile->ExpandVariablesInString(command);
|
||||||
std::vector<std::string> depends;
|
std::vector<std::string> depends;
|
||||||
depends.push_back(command);
|
depends.push_back(command);
|
||||||
command += " cable_config.xml";
|
command = "\""+command+"\" cable_config.xml";
|
||||||
|
|
||||||
std::vector<std::string> outputs;
|
std::vector<std::string> outputs;
|
||||||
outputs.push_back("Cxx/"+m_PackageName+"_cxx.cxx");
|
outputs.push_back("Cxx/"+m_PackageName+"_cxx.cxx");
|
||||||
|
|
Loading…
Reference in New Issue