aboutsummarylogtreecommitdiffstats
path: root/qt5-prevent-debug-library-names-in-pkgconfig-files.patch
diff options
context:
space:
mode:
Diffstat (limited to 'qt5-prevent-debug-library-names-in-pkgconfig-files.patch')
-rw-r--r--qt5-prevent-debug-library-names-in-pkgconfig-files.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/qt5-prevent-debug-library-names-in-pkgconfig-files.patch b/qt5-prevent-debug-library-names-in-pkgconfig-files.patch
deleted file mode 100644
index 7d6836d5ab06..000000000000
--- a/qt5-prevent-debug-library-names-in-pkgconfig-files.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- qtbase-opensource-src-5.2.0/qmake/generators/makefile.cpp.orig 2014-01-03 01:30:23.631353708 +0100
-+++ qtbase-opensource-src-5.2.0/qmake/generators/makefile.cpp 2014-01-03 01:32:37.888625966 +0100
-@@ -3168,6 +3168,9 @@
- if (dot != -1)
- ret = ret.left(dot);
- }
-+ if (project->isActiveConfig("debug")) {
-+ ret += "d";
-+ }
- ret += Option::pkgcfg_ext;
- QString subdir = project->first("QMAKE_PKGCONFIG_DESTDIR").toQString();
- if(!subdir.isEmpty()) {