aboutsummarylogtreecommitdiffstats
path: root/qt5-dont-add-resource-files-to-qmake-libs.patch
diff options
context:
space:
mode:
authorPhilip A Reimer2015-06-12 17:19:31 -0600
committerPhilip A Reimer2015-06-12 17:19:31 -0600
commita144ffb8da8f0c7fca2e303c95198b6a53a12c6d (patch)
tree099b62df19983539cf97f3dd07b5ce4dc90f62a1 /qt5-dont-add-resource-files-to-qmake-libs.patch
downloadaur-a144ffb8da8f0c7fca2e303c95198b6a53a12c6d.tar.gz
Initial import
Diffstat (limited to 'qt5-dont-add-resource-files-to-qmake-libs.patch')
-rw-r--r--qt5-dont-add-resource-files-to-qmake-libs.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/qt5-dont-add-resource-files-to-qmake-libs.patch b/qt5-dont-add-resource-files-to-qmake-libs.patch
new file mode 100644
index 000000000000..b348429551ff
--- /dev/null
+++ b/qt5-dont-add-resource-files-to-qmake-libs.patch
@@ -0,0 +1,11 @@
+--- qtbase-opensource-src-5.2.0/qmake/generators/win32/mingw_make.cpp.orig 2014-01-04 21:18:07.413328813 +0100
++++ qtbase-opensource-src-5.2.0/qmake/generators/win32/mingw_make.cpp 2014-01-04 21:18:55.740126515 +0100
+@@ -254,7 +254,7 @@
+ processVars();
+
+ if (!project->values("RES_FILE").isEmpty()) {
+- project->values("QMAKE_LIBS") += escapeFilePaths(project->values("RES_FILE"));
++ project->values("OBJECTS") += escapeFilePaths(project->values("RES_FILE"));
+ }
+
+ ProStringList &configs = project->values("CONFIG");