summaryrefslogtreecommitdiff
path: root/Source/cmGlobalWatcomWMakeGenerator.cxx
diff options
context:
space:
mode:
authorJiri Malak <malak.jiri@gmail.com>2020-04-27 09:19:48 +0200
committerBrad King <brad.king@kitware.com>2020-04-27 11:05:19 -0400
commit511a03f933d68e0e33b2568f8540c6b6a4a64246 (patch)
tree299c1106bd19dd671d4888e470c3768e00863e89 /Source/cmGlobalWatcomWMakeGenerator.cxx
parentc77353e11cbfcb2534a0b635f6cb20ac3dd28bb7 (diff)
downloadcmake-511a03f933d68e0e33b2568f8540c6b6a4a64246.tar.gz
Watcom WMake: Use wmake internal %null command for empty command list
wmake internal command %null realy do "nothing". It is designed to use in command lists.
Diffstat (limited to 'Source/cmGlobalWatcomWMakeGenerator.cxx')
-rw-r--r--Source/cmGlobalWatcomWMakeGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalWatcomWMakeGenerator.cxx b/Source/cmGlobalWatcomWMakeGenerator.cxx
index 308ddda736..07e0793ab7 100644
--- a/Source/cmGlobalWatcomWMakeGenerator.cxx
+++ b/Source/cmGlobalWatcomWMakeGenerator.cxx
@@ -19,7 +19,7 @@ cmGlobalWatcomWMakeGenerator::cmGlobalWatcomWMakeGenerator(cmake* cm)
#endif
this->ToolSupportsColor = true;
this->NeedSymbolicMark = true;
- this->EmptyRuleHackCommand = "@cd .";
+ this->EmptyRuleHackCommand = "@%null";
#ifdef _WIN32
cm->GetState()->SetWindowsShell(true);
#endif