From 28ee3bef3467bb05f9ca4fa74c51e566177ad1c9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 16 May 2023 12:44:29 -0400 Subject: 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. --- Source/cmGlobalGenerator.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx index f8f9442..3e4d657 100644 --- a/Source/cmGlobalGenerator.cxx +++ b/Source/cmGlobalGenerator.cxx @@ -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 " @@ -2155,7 +2155,7 @@ int cmGlobalGenerator::Build( // now build std::string makeCommandStr; - output += "\nRun Build Command(s):"; + output += "\nRun Build Command(s): "; retVal = 0; for (auto command = makeCommand.begin(); -- cgit v0.12