Makefile: Change link step message color to bold green

Avoid displaying red messages when no error has occurred.
This commit is contained in:
Brad King 2015-02-06 19:07:56 -05:00
parent 7bb50e4a31
commit ae775fe804
1 changed files with 1 additions and 1 deletions

View File

@ -1367,7 +1367,7 @@ cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands,
color_name = "--green "; color_name = "--green ";
break; break;
case EchoLink: case EchoLink:
color_name = "--red --bold "; color_name = "--green --bold ";
break; break;
case EchoGenerate: case EchoGenerate:
color_name = "--blue --bold "; color_name = "--blue --bold ";