mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 13:50:10 -05:00
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.
This commit is contained in:
+1
-1
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user