summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-02-07 00:07:56 (GMT)
committerBrad King <brad.king@kitware.com>2015-02-07 00:07:56 (GMT)
commitae775fe8041183030c69db1714c898b6e74f1284 (patch)
treed9e1f120e5fab872dacbeda72c0e1b670017ed92 /Source
parent7bb50e4a31ad5a8a58fe60885014d431a887b27f (diff)
downloadCMake-ae775fe8041183030c69db1714c898b6e74f1284.zip
CMake-ae775fe8041183030c69db1714c898b6e74f1284.tar.gz
CMake-ae775fe8041183030c69db1714c898b6e74f1284.tar.bz2
Makefile: Change link step message color to bold green
Avoid displaying red messages when no error has occurred.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index c60a9c7..c4f7243 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 ";