summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/unix/unixmake.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/qmake/generators/unix/unixmake.cpp b/qmake/generators/unix/unixmake.cpp
index 62eee19..7c8e173 100644
--- a/qmake/generators/unix/unixmake.cpp
+++ b/qmake/generators/unix/unixmake.cpp
@@ -456,11 +456,7 @@ UnixMakefileGenerator::findLibraries()
libdirs.append(f);
} else if(opt.startsWith("-l")) {
if (!project->isEmpty("QMAKE_SYMBIAN_SHLIB")) {
- if (opt.indexOf(".lib") == -1) {
- (*it) = opt.mid(2) + ".lib";
- } else {
- (*it) = opt.mid(2);
- }
+ (*it) = opt.mid(2);
} else if (project->isActiveConfig("rvct_linker")) {
(*it) = "lib" + opt.mid(2) + ".so";
} else {