Watcom: Suppress WMake interactive prompt on error
Add the "-e" option to build.make invocations of wmake as part of the silencing flags. From "wmake /?": -e erase files after error (no prompt) This prevents test timeouts on error.
This commit is contained in:
parent
da6b86f4f0
commit
abd2b36089
|
@ -47,7 +47,7 @@ cmLocalGenerator *cmGlobalWatcomWMakeGenerator::CreateLocalGenerator()
|
|||
lg->SetDefineWindowsNULL(true);
|
||||
lg->SetWindowsShell(true);
|
||||
lg->SetWatcomWMake(true);
|
||||
lg->SetMakeSilentFlag("-s -h");
|
||||
lg->SetMakeSilentFlag("-s -h -e");
|
||||
lg->SetGlobalGenerator(this);
|
||||
lg->SetIgnoreLibPrefix(true);
|
||||
lg->SetPassMakeflags(false);
|
||||
|
|
Loading…
Reference in New Issue