summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-09 14:53:30 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2006-03-09 14:53:30 (GMT)
commit10d1b2079072150321ee29b249fc39f116671375 (patch)
tree0b6d44f08007de9a46cd05f70a7d0e6b2096150a /Source
parent95ea0272deccb95ca7d7f5a9ae62d5200482dd48 (diff)
downloadCMake-10d1b2079072150321ee29b249fc39f116671375.zip
CMake-10d1b2079072150321ee29b249fc39f116671375.tar.gz
CMake-10d1b2079072150321ee29b249fc39f116671375.tar.bz2
BUG: Fix problem on Wacom system with global symbolic targets
Diffstat (limited to 'Source')
-rw-r--r--Source/cmLocalUnixMakefileGenerator3.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index c958322..5045d52 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1286,7 +1286,7 @@ void cmLocalUnixMakefileGenerator3
this->AppendCustomDepends(depends, glIt->second.GetPostBuildCommands());
this->AppendCustomCommands(commands, glIt->second.GetPreBuildCommands());
this->AppendCustomCommands(commands, glIt->second.GetPostBuildCommands());
- this->WriteMakeRule(ruleFileStream, targetString.c_str(), glIt->first.c_str(), depends, commands, false);
+ this->WriteMakeRule(ruleFileStream, targetString.c_str(), glIt->first.c_str(), depends, commands, true);
}
}