ENH: Removing ... ellipsis from end of echo lines. It is just clutter.
This commit is contained in:
parent
778c4940de
commit
4c765d2797
@ -536,7 +536,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
depEcho += lang;
|
depEcho += lang;
|
||||||
depEcho += " dependencies of ";
|
depEcho += " dependencies of ";
|
||||||
depEcho += this->ConvertToRelativeOutputPath(obj.c_str());
|
depEcho += this->ConvertToRelativeOutputPath(obj.c_str());
|
||||||
depEcho += "...";
|
|
||||||
this->AppendEcho(commands, depEcho.c_str());
|
this->AppendEcho(commands, depEcho.c_str());
|
||||||
|
|
||||||
// Add a command to call CMake to scan dependencies. CMake will
|
// Add a command to call CMake to scan dependencies. CMake will
|
||||||
@ -601,7 +600,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
buildEcho += lang;
|
buildEcho += lang;
|
||||||
buildEcho += " object ";
|
buildEcho += " object ";
|
||||||
buildEcho += this->ConvertToRelativeOutputPath(obj.c_str());
|
buildEcho += this->ConvertToRelativeOutputPath(obj.c_str());
|
||||||
buildEcho += "...";
|
|
||||||
this->AppendEcho(commands, buildEcho.c_str());
|
this->AppendEcho(commands, buildEcho.c_str());
|
||||||
|
|
||||||
// Construct the compile rules.
|
// Construct the compile rules.
|
||||||
@ -714,7 +712,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
std::vector<std::string> commands;
|
std::vector<std::string> commands;
|
||||||
std::string preEcho = "Generating ";
|
std::string preEcho = "Generating ";
|
||||||
preEcho += output;
|
preEcho += output;
|
||||||
preEcho += "...";
|
|
||||||
this->AppendEcho(commands, preEcho.c_str());
|
this->AppendEcho(commands, preEcho.c_str());
|
||||||
this->AppendCustomCommand(commands, cc);
|
this->AppendCustomCommand(commands, cc);
|
||||||
|
|
||||||
@ -1622,7 +1619,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
buildEcho += linkLanguage;
|
buildEcho += linkLanguage;
|
||||||
buildEcho += " executable ";
|
buildEcho += " executable ";
|
||||||
buildEcho += targetOutPath;
|
buildEcho += targetOutPath;
|
||||||
buildEcho += "...";
|
|
||||||
this->AppendEcho(commands, buildEcho.c_str());
|
this->AppendEcho(commands, buildEcho.c_str());
|
||||||
|
|
||||||
// Build a list of compiler flags and linker flags.
|
// Build a list of compiler flags and linker flags.
|
||||||
@ -1907,7 +1903,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
buildEcho += " library "; break;
|
buildEcho += " library "; break;
|
||||||
}
|
}
|
||||||
buildEcho += targetOutPath.c_str();
|
buildEcho += targetOutPath.c_str();
|
||||||
buildEcho += "...";
|
|
||||||
this->AppendEcho(commands, buildEcho.c_str());
|
this->AppendEcho(commands, buildEcho.c_str());
|
||||||
|
|
||||||
// Add a command to remove any existing files for this library.
|
// Add a command to remove any existing files for this library.
|
||||||
@ -3101,7 +3096,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
jumpPreEcho += rt.m_BuildDirectory.c_str();
|
jumpPreEcho += rt.m_BuildDirectory.c_str();
|
||||||
jumpPreEcho += " to build ";
|
jumpPreEcho += " to build ";
|
||||||
jumpPreEcho += jump->first;
|
jumpPreEcho += jump->first;
|
||||||
jumpPreEcho += "...";
|
|
||||||
this->AppendEcho(commands, jumpPreEcho.c_str());
|
this->AppendEcho(commands, jumpPreEcho.c_str());
|
||||||
|
|
||||||
// Build the jump-and-build command list.
|
// Build the jump-and-build command list.
|
||||||
@ -3154,7 +3148,6 @@ cmLocalUnixMakefileGenerator2
|
|||||||
// Add the post-jump message.
|
// Add the post-jump message.
|
||||||
std::string jumpPostEcho = "Returning to ";
|
std::string jumpPostEcho = "Returning to ";
|
||||||
jumpPostEcho += m_Makefile->GetStartOutputDirectory();
|
jumpPostEcho += m_Makefile->GetStartOutputDirectory();
|
||||||
jumpPostEcho += "...";
|
|
||||||
this->AppendEcho(commands, jumpPostEcho.c_str());
|
this->AppendEcho(commands, jumpPostEcho.c_str());
|
||||||
|
|
||||||
// Write the rule.
|
// Write the rule.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user