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:
Brad King 2013-11-25 12:59:19 -05:00
parent da6b86f4f0
commit abd2b36089
1 changed files with 1 additions and 1 deletions

View File

@ -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);