diff options
author | Brad King <brad.king@kitware.com> | 2006-04-27 01:53:21 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-04-27 01:53:21 (GMT) |
commit | a3cd7fd1b55e88da5a596ca88e9f7b0f90155087 (patch) | |
tree | 228791db80b410bd8404c1965021dd52a6c18d42 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | a4f9d6a80b61018a33d564c9403304e7f400fc00 (diff) | |
download | CMake-a3cd7fd1b55e88da5a596ca88e9f7b0f90155087.zip CMake-a3cd7fd1b55e88da5a596ca88e9f7b0f90155087.tar.gz CMake-a3cd7fd1b55e88da5a596ca88e9f7b0f90155087.tar.bz2 |
COMP: Disable color support for bootstrap.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 0717db5..85c749a 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -856,6 +856,7 @@ cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands, { // Choose the color for the text. std::string color_name; +#ifdef CMAKE_BUILD_WITH_CMAKE if(this->GlobalGenerator->GetToolSupportsColor() && this->Makefile->IsOn("CMAKE_COLOR_MAKEFILE")) { @@ -882,6 +883,7 @@ cmLocalUnixMakefileGenerator3::AppendEcho(std::vector<std::string>& commands, break; } } +#endif // Echo one line at a time. std::string line; |