summaryrefslogtreecommitdiffstats
path: root/qmake
diff options
context:
space:
mode:
Diffstat (limited to 'qmake')
-rw-r--r--qmake/generators/makefile.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/qmake/generators/makefile.cpp b/qmake/generators/makefile.cpp
index 260c7313f4..49f626b2d9 100644
--- a/qmake/generators/makefile.cpp
+++ b/qmake/generators/makefile.cpp
@@ -1010,13 +1010,6 @@ MakefileGenerator::writePrlFile(QTextStream &t)
for (ProStringList::Iterator it = libs.begin(); it != libs.end(); ++it)
t << project->values((*it).toKey()).join(' ').replace('\\', "\\\\") << " ";
t << endl;
- t << "QMAKE_PRL_LIBS_FOR_CMAKE = ";
- QString sep;
- for (ProStringList::Iterator it = libs.begin(); it != libs.end(); ++it) {
- t << sep << project->values((*it).toKey()).join(';').replace('\\', "\\\\");
- sep = ';';
- }
- t << endl;
}
}