summaryrefslogtreecommitdiff
path: root/debian/patches/12_fix_qmake_pkgconfig.diff
diff options
context:
space:
mode:
Diffstat (limited to 'debian/patches/12_fix_qmake_pkgconfig.diff')
-rw-r--r--debian/patches/12_fix_qmake_pkgconfig.diff11
1 files changed, 0 insertions, 11 deletions
diff --git a/debian/patches/12_fix_qmake_pkgconfig.diff b/debian/patches/12_fix_qmake_pkgconfig.diff
deleted file mode 100644
index 1535dce..0000000
--- a/debian/patches/12_fix_qmake_pkgconfig.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/qmake/generators/unix/unixmake2.cpp
-+++ b/qmake/generators/unix/unixmake2.cpp
-@@ -1434,6 +1434,8 @@ UnixMakefileGenerator::writePkgConfigFil
- pkgConfiglibName = "-l" + lname.left(lname.length()-Option::libtool_ext.length());
- }
- t << pkgConfiglibDir << " " << pkgConfiglibName << " ";
-+ t << endl;
-+ t << "Libs.private: ";
- for(QStringList::ConstIterator it = libs.begin(); it != libs.end(); ++it) {
- t << project->values((*it)).join(" ") << " ";
- }