diff options
Diffstat (limited to 'meta/recipes-qt/qt4/qt-4.8.1/qmake_pri_fixes.patch')
-rw-r--r-- | meta/recipes-qt/qt4/qt-4.8.1/qmake_pri_fixes.patch | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/meta/recipes-qt/qt4/qt-4.8.1/qmake_pri_fixes.patch b/meta/recipes-qt/qt4/qt-4.8.1/qmake_pri_fixes.patch new file mode 100644 index 0000000000..82bff04974 --- /dev/null +++ b/meta/recipes-qt/qt4/qt-4.8.1/qmake_pri_fixes.patch | |||
@@ -0,0 +1,51 @@ | |||
1 | From c56ed5f64a5f47cf8d539aa4ca9bedbe1fea2264 Mon Sep 17 00:00:00 2001 | ||
2 | From: Paul Eggleton <paul.eggleton@linux.intel.com> | ||
3 | Date: Fri, 10 Feb 2012 15:32:12 +0000 | ||
4 | Subject: [PATCH] qmake: fix source file references in qmake.pri | ||
5 | |||
6 | Fix duplicate entries in SOURCES and HEADERS, and fix the source file | ||
7 | list for the split of qlocale.cpp. | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | |||
11 | Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> | ||
12 | --- | ||
13 | qmake/qmake.pri | 8 ++++---- | ||
14 | 1 files changed, 4 insertions(+), 4 deletions(-) | ||
15 | |||
16 | diff --git a/qmake/qmake.pri b/qmake/qmake.pri | ||
17 | index f2a3705..2d4e94c 100644 | ||
18 | --- a/qmake/qmake.pri | ||
19 | +++ b/qmake/qmake.pri | ||
20 | @@ -22,8 +22,7 @@ SOURCES += project.cpp property.cpp main.cpp generators/makefile.cpp \ | ||
21 | generators/symbian/initprojectdeploy_symbian.cpp \ | ||
22 | generators/integrity/gbuild.cpp \ | ||
23 | windows/registry.cpp \ | ||
24 | - symbian/epocroot.cpp \ | ||
25 | - generators/integrity/gbuild.cpp | ||
26 | + symbian/epocroot.cpp | ||
27 | |||
28 | HEADERS += project.h property.h generators/makefile.h \ | ||
29 | generators/unix/unixmake.h meta.h option.h cachekeys.h \ | ||
30 | @@ -40,8 +39,7 @@ HEADERS += project.h property.h generators/makefile.h \ | ||
31 | generators/symbian/initprojectdeploy_symbian.h \ | ||
32 | generators/integrity/gbuild.h \ | ||
33 | windows/registry_p.h \ | ||
34 | - symbian/epocroot_p.h \ | ||
35 | - generators/integrity/gbuild.h | ||
36 | + symbian/epocroot_p.h | ||
37 | |||
38 | contains(QT_EDITION, OpenSource) { | ||
39 | DEFINES += QMAKE_OPENSOURCE_EDITION | ||
40 | @@ -72,6 +70,8 @@ bootstrap { #Qt code | ||
41 | qlist.cpp \ | ||
42 | qlinkedlist.cpp \ | ||
43 | qlocale.cpp \ | ||
44 | + qlocale_tools.cpp \ | ||
45 | + qlocale_unix.cpp \ | ||
46 | qmalloc.cpp \ | ||
47 | qmap.cpp \ | ||
48 | qmetatype.cpp \ | ||
49 | -- | ||
50 | 1.7.5.4 | ||
51 | |||