summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-05-16 16:44:29 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-05-16 16:47:50 (GMT)
commit28ee3bef3467bb05f9ca4fa74c51e566177ad1c9 (patch)
treebc2abbd2827745707a497037f76308c40d8e6d4d /Source/cmGlobalGenerator.cxx
parent465ab8d872aeabfffab0c1dd0510bad1bb49fa92 (diff)
downloadCMake-28ee3bef3467bb05f9ca4fa74c51e566177ad1c9.zip
CMake-28ee3bef3467bb05f9ca4fa74c51e566177ad1c9.tar.gz
CMake-28ee3bef3467bb05f9ca4fa74c51e566177ad1c9.tar.bz2
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.
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx6
1 files 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();