diff options
Diffstat (limited to 'Source/cmCablePackageCommand.cxx')
-rw-r--r-- | Source/cmCablePackageCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCablePackageCommand.cxx b/Source/cmCablePackageCommand.cxx index aca0612..84656bd 100644 --- a/Source/cmCablePackageCommand.cxx +++ b/Source/cmCablePackageCommand.cxx @@ -62,7 +62,7 @@ bool cmCablePackageCommand::Invoke(std::vector<std::string>& args) m_Makefile->ExpandVariablesInString(command); std::vector<std::string> depends; depends.push_back(command); - command += " cable_config.xml"; + command = "\""+command+"\" cable_config.xml"; std::vector<std::string> outputs; outputs.push_back("Cxx/"+m_PackageName+"_cxx.cxx"); |