diff options
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. |