diff options
author | Brad King <brad.king@kitware.com> | 2009-10-08 18:45:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-08 18:45:25 (GMT) |
commit | dfa3b4f145958b8c58f4bc917e985cfa5d41355c (patch) | |
tree | 5388666a547559f182f3765eedbf5e2aace38cd5 /Source | |
parent | c16ac1a31d6e435eef4c8752acf0cfc4cce0cdef (diff) | |
download | CMake-dfa3b4f145958b8c58f4bc917e985cfa5d41355c.zip CMake-dfa3b4f145958b8c58f4bc917e985cfa5d41355c.tar.gz CMake-dfa3b4f145958b8c58f4bc917e985cfa5d41355c.tar.bz2 |
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.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<std::string>& args) std::string homeOutDir; std::string startOutDir; std::string depInfo; - bool color = true; + bool color = false; if(args.size() >= 8) { // Full signature: |