Browse Source

BUG: Fix problem on Wacom system with global symbolic targets

Andy Cedilnik 19 years ago
parent
commit
10d1b20790
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Source/cmLocalUnixMakefileGenerator3.cxx

+ 1 - 1
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);
       }
     }