mirror of
https://github.com/Kitware/CMake.git
synced 2025-10-20 12:53:55 +08:00
cmGlobalGenerator: add missing spaces in output
The preludes to commands should have a space to separate them from the first argument of the command sequence.
This commit is contained in:
@@ -2131,8 +2131,8 @@ int cmGlobalGenerator::Build(
|
||||
this->GenerateBuildCommand(makeCommandCSTR, projectName, bindir,
|
||||
{ "clean" }, realConfig, jobs, verbose,
|
||||
buildOptions);
|
||||
output +=
|
||||
cmStrCat("\nRun Clean Command:", cleanCommand.front().Printable(), '\n');
|
||||
output += cmStrCat(
|
||||
"\nRun Clean Command: ", cleanCommand.front().Printable(), '\n');
|
||||
if (cleanCommand.size() != 1) {
|
||||
this->GetCMakeInstance()->IssueMessage(MessageType::INTERNAL_ERROR,
|
||||
"The generator did not produce "
|
||||
|
Reference in New Issue
Block a user