diff options
author | Brad King <brad.king@kitware.com> | 2005-03-08 21:01:04 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-03-08 21:01:04 (GMT) |
commit | 4c765d2797412b81b79d0b58604218cd15ed305b (patch) | |
tree | a54841e1e9ec20f46c93599b97f9449f8f08ba61 /Source | |
parent | 778c4940decfc754637afe50e9f98c775c212c2c (diff) | |
download | CMake-4c765d2797412b81b79d0b58604218cd15ed305b.zip CMake-4c765d2797412b81b79d0b58604218cd15ed305b.tar.gz CMake-4c765d2797412b81b79d0b58604218cd15ed305b.tar.bz2 |
ENH: Removing ... ellipsis from end of echo lines. It is just clutter.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator2.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator2.cxx b/Source/cmLocalUnixMakefileGenerator2.cxx index 33e7085..aa3ceb0 100644 --- a/Source/cmLocalUnixMakefileGenerator2.cxx +++ b/Source/cmLocalUnixMakefileGenerator2.cxx @@ -536,7 +536,6 @@ cmLocalUnixMakefileGenerator2 depEcho += lang; depEcho += " dependencies of "; depEcho += this->ConvertToRelativeOutputPath(obj.c_str()); - depEcho += "..."; this->AppendEcho(commands, depEcho.c_str()); // Add a command to call CMake to scan dependencies. CMake will @@ -601,7 +600,6 @@ cmLocalUnixMakefileGenerator2 buildEcho += lang; buildEcho += " object "; buildEcho += this->ConvertToRelativeOutputPath(obj.c_str()); - buildEcho += "..."; this->AppendEcho(commands, buildEcho.c_str()); // Construct the compile rules. @@ -714,7 +712,6 @@ cmLocalUnixMakefileGenerator2 std::vector<std::string> commands; std::string preEcho = "Generating "; preEcho += output; - preEcho += "..."; this->AppendEcho(commands, preEcho.c_str()); this->AppendCustomCommand(commands, cc); @@ -1622,7 +1619,6 @@ cmLocalUnixMakefileGenerator2 buildEcho += linkLanguage; buildEcho += " executable "; buildEcho += targetOutPath; - buildEcho += "..."; this->AppendEcho(commands, buildEcho.c_str()); // Build a list of compiler flags and linker flags. @@ -1907,7 +1903,6 @@ cmLocalUnixMakefileGenerator2 buildEcho += " library "; break; } buildEcho += targetOutPath.c_str(); - buildEcho += "..."; this->AppendEcho(commands, buildEcho.c_str()); // Add a command to remove any existing files for this library. @@ -3101,7 +3096,6 @@ cmLocalUnixMakefileGenerator2 jumpPreEcho += rt.m_BuildDirectory.c_str(); jumpPreEcho += " to build "; jumpPreEcho += jump->first; - jumpPreEcho += "..."; this->AppendEcho(commands, jumpPreEcho.c_str()); // Build the jump-and-build command list. @@ -3154,7 +3148,6 @@ cmLocalUnixMakefileGenerator2 // Add the post-jump message. std::string jumpPostEcho = "Returning to "; jumpPostEcho += m_Makefile->GetStartOutputDirectory(); - jumpPostEcho += "..."; this->AppendEcho(commands, jumpPostEcho.c_str()); // Write the rule. |