فهرست منبع

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.
Brad King 12 سال پیش
والد
کامیت
abd2b36089
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      Source/cmGlobalWatcomWMakeGenerator.cxx

+ 1 - 1
Source/cmGlobalWatcomWMakeGenerator.cxx

@@ -47,7 +47,7 @@ cmLocalGenerator *cmGlobalWatcomWMakeGenerator::CreateLocalGenerator()
   lg->SetDefineWindowsNULL(true);
   lg->SetDefineWindowsNULL(true);
   lg->SetWindowsShell(true);
   lg->SetWindowsShell(true);
   lg->SetWatcomWMake(true);
   lg->SetWatcomWMake(true);
-  lg->SetMakeSilentFlag("-s -h");
+  lg->SetMakeSilentFlag("-s -h -e");
   lg->SetGlobalGenerator(this);
   lg->SetGlobalGenerator(this);
   lg->SetIgnoreLibPrefix(true);
   lg->SetIgnoreLibPrefix(true);
   lg->SetPassMakeflags(false);
   lg->SetPassMakeflags(false);