diff options
author | Jiri Malak <malak.jiri@gmail.com> | 2014-03-09 09:41:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-03-10 15:15:12 (GMT) |
commit | f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625 (patch) | |
tree | dd7f9052420299890eeae6c162e72c1f00a63f1f /Source/cmGlobalWatcomWMakeGenerator.cxx | |
parent | e21ffaf8fe5499426604b4ebb9cd08798ee6107c (diff) | |
download | CMake-f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625.zip CMake-f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625.tar.gz CMake-f1b689b64a96fbf1e6f3b154d1bd4ee28ea3d625.tar.bz2 |
Makefile: Improve handling of WMake verbose output and errors
* The '-e' option has nothing to do with verbose output.
It is now properly handled by .ERASE directive in make file
* The '-s' option sets silent output globally, it cannot be switched off.
It is now handled only by .SILENT directive in make file directive
is simply controlled by a conditonal block.
Remove SilentNoColon member variable as it is no longer needed.
Diffstat (limited to 'Source/cmGlobalWatcomWMakeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalWatcomWMakeGenerator.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmGlobalWatcomWMakeGenerator.cxx b/Source/cmGlobalWatcomWMakeGenerator.cxx index 98ce685..671166e 100644 --- a/Source/cmGlobalWatcomWMakeGenerator.cxx +++ b/Source/cmGlobalWatcomWMakeGenerator.cxx @@ -43,11 +43,10 @@ void cmGlobalWatcomWMakeGenerator cmLocalGenerator *cmGlobalWatcomWMakeGenerator::CreateLocalGenerator() { cmLocalUnixMakefileGenerator3* lg = new cmLocalUnixMakefileGenerator3; - lg->SetSilentNoColon(true); lg->SetDefineWindowsNULL(true); lg->SetWindowsShell(true); lg->SetWatcomWMake(true); - lg->SetMakeSilentFlag("-s -h -e"); + lg->SetMakeSilentFlag("-h"); lg->SetGlobalGenerator(this); lg->SetIgnoreLibPrefix(true); lg->SetPassMakeflags(false); |