diff options
author | Brad King <brad.king@kitware.com> | 2006-01-13 23:33:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-01-13 23:33:51 (GMT) |
commit | 327489ae590087064cbff1f924b8a44c8e835557 (patch) | |
tree | bf2acb0404d00c731a213cdfd92268aa0135aaa9 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 22c62c9e65817e25b077f88222c682efa0188ccb (diff) | |
download | CMake-327489ae590087064cbff1f924b8a44c8e835557.zip CMake-327489ae590087064cbff1f924b8a44c8e835557.tar.gz CMake-327489ae590087064cbff1f924b8a44c8e835557.tar.bz2 |
COMP: Removed unused paramter from cmLocalGenerator::OutputLinkLibraries.
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index e4d6b69..e484a3c 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -1523,7 +1523,7 @@ cmLocalUnixMakefileGenerator3 // Collect up flags to link in needed libraries. cmOStringStream linklibs; - this->OutputLinkLibraries(linklibs, 0, target); + this->OutputLinkLibraries(linklibs, target); // Construct object file lists that may be needed to expand the // rule. @@ -1868,7 +1868,7 @@ cmLocalUnixMakefileGenerator3 // Collect up flags to link in needed libraries. cmOStringStream linklibs; - this->OutputLinkLibraries(linklibs, target.GetName(), target); + this->OutputLinkLibraries(linklibs, target); // Construct object file lists that may be needed to expand the // rule. |