diff options
author | Ken Martin <ken.martin@kitware.com> | 2005-07-27 12:41:08 -0400 |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2005-07-27 12:41:08 -0400 |
commit | 4a98fcd0595b4ea270143bb5aeac7f2c6a4d46f6 (patch) | |
tree | 390f9f74598810014b6f37417a30fd87f9686346 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | eccf5e7903aa85fd5f2c4d4a737ca0f4c454569d (diff) | |
download | cmake-4a98fcd0595b4ea270143bb5aeac7f2c6a4d46f6.tar.gz |
ENH: fix some warnings and cleanup some
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index d11c7ca733..fde40bcc55 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -180,7 +180,7 @@ void cmLocalUnixMakefileGenerator3 if(cmCustomCommand* cc = (*i)->GetCustomCommand()) { cc->Used(); - this->GenerateCustomRuleFile(*cc,tgtDir.c_str(),ruleFileStream); + this->GenerateCustomRuleFile(*cc,ruleFileStream); if (clean) { cleanFiles.push_back @@ -640,7 +640,7 @@ cmLocalUnixMakefileGenerator3 //---------------------------------------------------------------------------- void cmLocalUnixMakefileGenerator3 -::GenerateCustomRuleFile(const cmCustomCommand& cc, const char *dir, +::GenerateCustomRuleFile(const cmCustomCommand& cc, std::ostream &ruleFileStream) { // Convert the output name to a relative path if possible. @@ -1786,8 +1786,6 @@ cmLocalUnixMakefileGenerator3 { return; } - cmGlobalUnixMakefileGenerator3 *gg = - static_cast<cmGlobalUnixMakefileGenerator3 *>(m_GlobalGenerator); this->WriteDependLanguageInfo(infoFileStream,target); // and now write the rule to use it |