remove another symbian remnant: QMAKE_RVCT_LINKSTYLE
Change-Id: Ibac060ecae061c72d4c7076b2d61a5cdd6247420 Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
This commit is contained in:
parent
2a973c031a
commit
c5195bcb49
@ -484,9 +484,7 @@ UnixMakefileGenerator::findLibraries()
|
|||||||
if(!libdirs.contains(f))
|
if(!libdirs.contains(f))
|
||||||
libdirs.append(f);
|
libdirs.append(f);
|
||||||
} else if(opt.startsWith("-l")) {
|
} else if(opt.startsWith("-l")) {
|
||||||
if (!project->isEmpty("QMAKE_RVCT_LINKSTYLE")) {
|
if (project->isActiveConfig("rvct_linker") || project->isActiveConfig("armcc_linker")) {
|
||||||
(*it) = opt.mid(2);
|
|
||||||
} else if (project->isActiveConfig("rvct_linker") || project->isActiveConfig("armcc_linker")) {
|
|
||||||
(*it) = "lib" + opt.mid(2) + ".so";
|
(*it) = "lib" + opt.mid(2) + ".so";
|
||||||
} else {
|
} else {
|
||||||
stub = opt.mid(2);
|
stub = opt.mid(2);
|
||||||
@ -535,9 +533,6 @@ UnixMakefileGenerator::findLibraries()
|
|||||||
+ project->values("QMAKE_PREFIX_SHLIB").first()
|
+ project->values("QMAKE_PREFIX_SHLIB").first()
|
||||||
+ stub + "." + (*extit));
|
+ stub + "." + (*extit));
|
||||||
if(exists(pathToLib)) {
|
if(exists(pathToLib)) {
|
||||||
if (!project->isEmpty("QMAKE_RVCT_LINKSTYLE"))
|
|
||||||
(*it) = pathToLib;
|
|
||||||
else
|
|
||||||
(*it) = "-l" + stub;
|
(*it) = "-l" + stub;
|
||||||
found = true;
|
found = true;
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user