Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
CMake
CMake
Commits
4c765d27
Commit
4c765d27
authored
Mar 08, 2005
by
Brad King
Browse files
ENH: Removing ... ellipsis from end of echo lines. It is just clutter.
parent
778c4940
Changes
1
Hide whitespace changes
Inline
Side-by-side
Source/cmLocalUnixMakefileGenerator2.cxx
View file @
4c765d27
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment