From dfa3b4f145958b8c58f4bc917e985cfa5d41355c Mon Sep 17 00:00:00 2001 From: Brad King Date: Thu, 8 Oct 2009 14:45:25 -0400 Subject: Really fix color check for dependency scanning The commit "Fix color check for dependency scanning" was meant to disable color if CMAKE_COLOR_MAKEFILE was off. It did remove use of the activation option '--color' but it failed to make the default false when the option was missing. This commit corrects that. See issue #9680. --- Source/cmake.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 108827a..d299544 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1475,7 +1475,7 @@ int cmake::ExecuteCMakeCommand(std::vector& args) std::string homeOutDir; std::string startOutDir; std::string depInfo; - bool color = true; + bool color = false; if(args.size() >= 8) { // Full signature: -- cgit v0.12