summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/win32/winmakefile.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/qmake/generators/win32/winmakefile.cpp b/qmake/generators/win32/winmakefile.cpp
index 17563043b6..a3c11f1397 100644
--- a/qmake/generators/win32/winmakefile.cpp
+++ b/qmake/generators/win32/winmakefile.cpp
@@ -221,7 +221,6 @@ Win32MakefileGenerator::processPrlFiles()
QList<QMakeLocalFileName> libdirs;
for(bool ret = false; true; ret = false) {
//read in any prl files included..
- QStringList l_out;
QStringList l = project->values("QMAKE_LIBS");
for(QStringList::Iterator it = l.begin(); it != l.end(); ++it) {
QString opt = (*it).trimmed();
@@ -255,12 +254,8 @@ Win32MakefileGenerator::processPrlFiles()
}
}
}
- if(!opt.isEmpty())
- l_out.append(opt);
}
- if(ret)
- l = l_out;
- else
+ if (!ret)
break;
}
}