do not look for frameworks in library path
it's just wrong Change-Id: Ia21e9fb7e67623d6c4f70eab1f76360624ba314b Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
parent
5bc9541e7a
commit
5e965df21d
@ -626,9 +626,8 @@ UnixMakefileGenerator::processPrlFiles()
|
|||||||
else
|
else
|
||||||
opt = l.at(++lit);
|
opt = l.at(++lit);
|
||||||
opt = opt.trimmed();
|
opt = opt.trimmed();
|
||||||
const QList<QMakeLocalFileName> dirs = frameworkdirs + libdirs;
|
foreach (const QMakeLocalFileName &dir, frameworkdirs) {
|
||||||
for(int dep_i = 0; dep_i < dirs.size(); ++dep_i) {
|
QString prl = dir.local() + "/" + opt + ".framework/" + opt + Option::prl_ext;
|
||||||
QString prl = dirs[dep_i].local() + "/" + opt + ".framework/" + opt + Option::prl_ext;
|
|
||||||
if(processPrlFile(prl))
|
if(processPrlFile(prl))
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user