summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-04-09 14:56:55 (GMT)
committerBrad King <brad.king@kitware.com>2001-04-09 14:56:55 (GMT)
commitd1e05d738f33248ec18e0ee3f1f7fd56d35c7273 (patch)
tree3e618b418443d745d33a3717303d61a3cf2df534
parenta04fa127a805a1720430e06be8796d3d435161ff (diff)
downloadCMake-d1e05d738f33248ec18e0ee3f1f7fd56d35c7273.zip
CMake-d1e05d738f33248ec18e0ee3f1f7fd56d35c7273.tar.gz
CMake-d1e05d738f33248ec18e0ee3f1f7fd56d35c7273.tar.bz2
ERR: Added double-quotes around command name before arguments are appended.
-rw-r--r--Source/cmCablePackageCommand.cxx2
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");