diff options
author | Brad King <brad.king@kitware.com> | 2013-11-25 17:59:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2013-11-25 18:14:38 (GMT) |
commit | abd2b3608960d781b30415e4b1c0ea8ad51ca9e7 (patch) | |
tree | 1462202ab2973b9391ab348310f0d5cd1aeffbdd /Source/cmGlobalWatcomWMakeGenerator.cxx | |
parent | da6b86f4f031b189768dc474721145a1b99f71ea (diff) | |
download | CMake-abd2b3608960d781b30415e4b1c0ea8ad51ca9e7.zip CMake-abd2b3608960d781b30415e4b1c0ea8ad51ca9e7.tar.gz CMake-abd2b3608960d781b30415e4b1c0ea8ad51ca9e7.tar.bz2 |
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.
Diffstat (limited to 'Source/cmGlobalWatcomWMakeGenerator.cxx')
-rw-r--r-- | Source/cmGlobalWatcomWMakeGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalWatcomWMakeGenerator.cxx b/Source/cmGlobalWatcomWMakeGenerator.cxx index 6ae8775..98ce685 100644 --- a/Source/cmGlobalWatcomWMakeGenerator.cxx +++ b/Source/cmGlobalWatcomWMakeGenerator.cxx @@ -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); |