diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-31 02:54:03 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-12-31 02:54:03 (GMT) |
commit | 9b0a485c75641cebb472ec6aa9e83074fc09bc6f (patch) | |
tree | e9765e2ad4e2469d155676869d4c5aa0e038273e /Source | |
parent | 9b97f4334298b859a87b028cad617663986fc86e (diff) | |
download | CMake-9b0a485c75641cebb472ec6aa9e83074fc09bc6f.zip CMake-9b0a485c75641cebb472ec6aa9e83074fc09bc6f.tar.gz CMake-9b0a485c75641cebb472ec6aa9e83074fc09bc6f.tar.bz2 |
ENH: fix so verbose is put in the correct place
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 922c94c..e387465 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1004,14 +1004,6 @@ cmLocalUnixMakefileGenerator3 << "\n"; } - if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) - { - makefileStream - << "# Produce verbose output by default.\n" - << "VERBOSE = 1\n" - << "\n"; - } - std::string cmakecommand = m_Makefile->GetRequiredDefinition("CMAKE_COMMAND"); makefileStream @@ -1197,6 +1189,14 @@ cmLocalUnixMakefileGenerator3 std::vector<std::string> commands; commands.clear(); std::vector<std::string> no_depends; + if(m_Makefile->IsOn("CMAKE_VERBOSE_MAKEFILE")) + { + makefileStream + << "# Produce verbose output by default.\n" + << "VERBOSE = 1\n" + << "\n"; + } + this->WriteMakeRule(makefileStream, "Suppress display of executed commands.", "$(VERBOSE).SILENT", |