diff options
author | Brad King <brad.king@kitware.com> | 2015-02-06 19:07:56 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-02-06 19:07:56 -0500 |
commit | ae775fe8041183030c69db1714c898b6e74f1284 (patch) | |
tree | d9e1f120e5fab872dacbeda72c0e1b670017ed92 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 7bb50e4a31ad5a8a58fe60885014d431a887b27f (diff) | |
download | cmake-ae775fe8041183030c69db1714c898b6e74f1284.tar.gz |
Makefile: Change link step message color to bold green
Avoid displaying red messages when no error has occurred.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index c60a9c740e..c4f7243c27 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1367,7 +1367,7 @@ cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands, color_name = "--green "; break; case EchoLink: - color_name = "--red --bold "; + color_name = "--green --bold "; break; case EchoGenerate: color_name = "--blue --bold "; |