diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-26 13:38:31 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-26 13:38:31 (GMT) |
commit | 30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25 (patch) | |
tree | 5b3fcc1f4f7c87868910d1714f9d08ede81afbd0 /Source/cmUnixMakefileGenerator.cxx | |
parent | ab7f884a444d929c5598a8384526e5f4044bc515 (diff) | |
download | CMake-30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25.zip CMake-30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25.tar.gz CMake-30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25.tar.bz2 |
bug fixes
Diffstat (limited to 'Source/cmUnixMakefileGenerator.cxx')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index 589e4b1..08392f2 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -154,13 +154,6 @@ void cmUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout, // For executables, add these a second time so order does not matter linkLibs += librariesLinked; } - - std::vector<std::string>& libsUnix = m_Makefile->GetLinkLibrariesUnix(); - for(j = libsUnix.begin(); j != libsUnix.end(); ++j) - { - linkLibs += *j; - linkLibs += " "; - } linkLibs += " ${LOCAL_LINK_FLAGS} "; fout << linkLibs; } |