BUG: look for -l anywhere in link library entry not just the begining of the line
This commit is contained in:
parent
ecbc720829
commit
42b7d859ad
|
@ -515,7 +515,7 @@ void cmUnixMakefileGenerator::OutputLinkLibraries(std::ostream& fout,
|
||||||
// if a variable expands to nothing.
|
// if a variable expands to nothing.
|
||||||
if (lib->first.size() == 0) continue;
|
if (lib->first.size() == 0) continue;
|
||||||
// if it is a full path break it into -L and -l
|
// if it is a full path break it into -L and -l
|
||||||
cmRegularExpression reg("(^[ \t]*\\-l)|(^[ \t]*\\-framework)|(\\${)");
|
cmRegularExpression reg("([ \t]*\\-l)|([ \t]*\\-framework)|(\\${)");
|
||||||
if(lib->first.find('/') != std::string::npos
|
if(lib->first.find('/') != std::string::npos
|
||||||
&& !reg.find(lib->first))
|
&& !reg.find(lib->first))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue