summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefileTargetGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-05-16 17:24:17 (GMT)
committerBrad King <brad.king@kitware.com>2007-05-16 17:24:17 (GMT)
commit142210997f803cd64f93795980dbf6dd38182697 (patch)
treef861c88b1df5be1ce8fcf03ee9793c8ff4ce78e3 /Source/cmMakefileTargetGenerator.cxx
parent01c7db07c3826c05c658a370cd0d42bf3128fcff (diff)
downloadCMake-142210997f803cd64f93795980dbf6dd38182697.zip
CMake-142210997f803cd64f93795980dbf6dd38182697.tar.gz
CMake-142210997f803cd64f93795980dbf6dd38182697.tar.bz2
BUG: Watcom WMake needs empty rule commands even for symbolic targets. This fixes the cmake_force target.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r--Source/cmMakefileTargetGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx
index 54d7835..8eec8c2 100644
--- a/Source/cmMakefileTargetGenerator.cxx
+++ b/Source/cmMakefileTargetGenerator.cxx
@@ -923,7 +923,7 @@ cmMakefileTargetGenerator
// to be created.
std::vector<std::string> commands;
std::vector<std::string> depends;
- std::string emptyCommand = this->GlobalGenerator->GetEmptyCommandHack();
+ std::string emptyCommand = this->GlobalGenerator->GetEmptyRuleHackCommand();
if(!emptyCommand.empty())
{
commands.push_back(emptyCommand);