mirror of
https://github.com/reactos/CMake.git
synced 2024-12-15 15:48:52 +00:00
BUG: Another space-in-path fix.
This commit is contained in:
parent
54a470dd03
commit
20455c699b
@ -105,8 +105,10 @@ int cmCPackDebGenerator::CompressFiles(const char* outFileName,
|
||||
out << std::endl;
|
||||
}
|
||||
|
||||
std::string cmd = cmakeExecutable;
|
||||
cmd += " -E tar cfz data.tar.gz ./usr";
|
||||
std::string cmd;
|
||||
cmd = "\"";
|
||||
cmd += cmakeExecutable;
|
||||
cmd += "\" -E tar cfz data.tar.gz ./usr";
|
||||
std::string output;
|
||||
int retVal = -1;
|
||||
int res = cmSystemTools::RunSingleCommand(cmd.c_str(), &output,
|
||||
|
Loading…
Reference in New Issue
Block a user