removed extra lib paths to avoid finding old libs

This commit is contained in:
Ken Martin 2001-11-27 15:33:43 -05:00
parent fcb647bae4
commit a99f293e3a
1 changed files with 8 additions and 3 deletions

View File

@ -70,12 +70,17 @@ bool cmLinkLibrariesCommand::InitialPass(std::vector<std::string> const& args)
m_Makefile->AddLinkLibrary(i->c_str()); m_Makefile->AddLinkLibrary(i->c_str());
} }
const char* dir = m_Makefile->GetDefinition(i->c_str()); const char* ldir = m_Makefile->GetDefinition("LIBRARY_OUTPUT_PATH");
if( dir ) if (cmSystemTools::IsOff(ldir))
{ {
m_Makefile->AddLinkDirectory( dir ); const char* dir = m_Makefile->GetDefinition(i->c_str());
if( dir )
{
m_Makefile->AddLinkDirectory( dir );
}
} }
} }
return true; return true;
} }