BUG: do not include /usr/lib in -L
This commit is contained in:
parent
7950871fcb
commit
52e83c7afd
|
@ -243,14 +243,18 @@ void cmUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
|
|||
for(std::vector<std::string>::iterator libDir = libdirs.begin();
|
||||
libDir != libdirs.end(); ++libDir)
|
||||
{
|
||||
std::string::size_type pos = libDir->find("-L");
|
||||
if((pos == std::string::npos || pos > 0)
|
||||
&& libDir->find("${") == std::string::npos)
|
||||
std::string libpath = cmSystemTools::EscapeSpaces(libDir->c_str());
|
||||
if(libpath != "/usr/lib")
|
||||
{
|
||||
linkLibs += "-L";
|
||||
std::string::size_type pos = libDir->find("-L");
|
||||
if((pos == std::string::npos || pos > 0)
|
||||
&& libDir->find("${") == std::string::npos)
|
||||
{
|
||||
linkLibs += "-L";
|
||||
}
|
||||
linkLibs += libpath;
|
||||
linkLibs += " ";
|
||||
}
|
||||
linkLibs += cmSystemTools::EscapeSpaces(libDir->c_str());
|
||||
linkLibs += " ";
|
||||
}
|
||||
std::string librariesLinked;
|
||||
const cmTarget::LinkLibraries& libs = tgt.GetLinkLibraries();
|
||||
|
@ -273,9 +277,13 @@ void cmUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
|
|||
std::string dir, file;
|
||||
cmSystemTools::SplitProgramPath(lib->first.c_str(),
|
||||
dir, file);
|
||||
linkLibs += "-L";
|
||||
linkLibs += cmSystemTools::EscapeSpaces(dir.c_str());
|
||||
linkLibs += " ";
|
||||
std::string libpath = cmSystemTools::EscapeSpaces(dir.c_str());
|
||||
if(libpath != "/usr/lib")
|
||||
{
|
||||
linkLibs += "-L";
|
||||
linkLibs += libpath;
|
||||
linkLibs += " ";
|
||||
}
|
||||
librariesLinked += "-l";
|
||||
cmRegularExpression libname("lib(.*)\\.(.*)");
|
||||
if(libname.find(file))
|
||||
|
|
Loading…
Reference in New Issue