diff options
author | Jiri Malak <malak.jiri@gmail.com> | 2020-04-27 07:19:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-04-27 15:05:19 (GMT) |
commit | 511a03f933d68e0e33b2568f8540c6b6a4a64246 (patch) | |
tree | 299c1106bd19dd671d4888e470c3768e00863e89 /Source/cmGlobalWatcomWMakeGenerator.cxx | |
parent | c77353e11cbfcb2534a0b635f6cb20ac3dd28bb7 (diff) | |
download | CMake-511a03f933d68e0e33b2568f8540c6b6a4a64246.zip CMake-511a03f933d68e0e33b2568f8540c6b6a4a64246.tar.gz CMake-511a03f933d68e0e33b2568f8540c6b6a4a64246.tar.bz2 |
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.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalWatcomWMakeGenerator.cxx b/Source/cmGlobalWatcomWMakeGenerator.cxx index 308ddda..07e0793 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 |