diff options
author | Brad King <brad.king@kitware.com> | 2007-05-16 17:24:17 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-05-16 17:24:17 (GMT) |
commit | 142210997f803cd64f93795980dbf6dd38182697 (patch) | |
tree | f861c88b1df5be1ce8fcf03ee9793c8ff4ce78e3 /Source/cmMakefileTargetGenerator.cxx | |
parent | 01c7db07c3826c05c658a370cd0d42bf3128fcff (diff) | |
download | CMake-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.cxx | 2 |
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); |