summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalUnixMakefileGenerator3.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-01-13 23:33:51 (GMT)
committerBrad King <brad.king@kitware.com>2006-01-13 23:33:51 (GMT)
commit327489ae590087064cbff1f924b8a44c8e835557 (patch)
treebf2acb0404d00c731a213cdfd92268aa0135aaa9 /Source/cmLocalUnixMakefileGenerator3.cxx
parent22c62c9e65817e25b077f88222c682efa0188ccb (diff)
downloadCMake-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.cxx4
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.