diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-22 18:53:51 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-06-22 18:53:51 (GMT) |
commit | 65a2a9f72c7ea89bf388a2cf91e2202aa375bee2 (patch) | |
tree | 93bc7e9500ad8f47baaedbc516c9b401c37b57e5 /Source | |
parent | 8da64c7c443dc7847e360d37255a03e5efec130f (diff) | |
download | CMake-65a2a9f72c7ea89bf388a2cf91e2202aa375bee2.zip CMake-65a2a9f72c7ea89bf388a2cf91e2202aa375bee2.tar.gz CMake-65a2a9f72c7ea89bf388a2cf91e2202aa375bee2.tar.bz2 |
BUG: shared libraries should not depend on other shared libraries, they get relinked too often.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmUnixMakefileGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmUnixMakefileGenerator.cxx b/Source/cmUnixMakefileGenerator.cxx index eff4714..c5ccfbe 100644 --- a/Source/cmUnixMakefileGenerator.cxx +++ b/Source/cmUnixMakefileGenerator.cxx @@ -501,7 +501,7 @@ void cmUnixMakefileGenerator::OutputTargets(std::ostream& fout) fout << std::endl; fout << m_LibraryOutputPath << "lib" << l->first << "$(SHLIB_SUFFIX): ${" << - l->first << "_SRC_OBJS} ${CMAKE_DEPEND_LIBS}\n"; + l->first << "_SRC_OBJS} \n"; fout << "\trm -f lib" << l->first << "$(SHLIB_SUFFIX)\n"; fout << "\t$(CMAKE_CXX_COMPILER) ${CMAKE_SHLIB_LINK_FLAGS} " "${CMAKE_SHLIB_BUILD_FLAGS} ${CMAKE_CXX_FLAGS} -o \\\n"; |