diff options
author | Jonathan Liu <net147@gmail.com> | 2013-06-07 15:15:35 +1000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-06-11 15:38:02 +0100 |
commit | 9496d9a9adc4f444d94bd16cf316f70eed985919 (patch) | |
tree | 60202c6d9a49eecc040bd782169bbb691758563c /meta/recipes-qt/qt4 | |
parent | 407bce925b496808224e50ca37286f3937129042 (diff) | |
download | poky-9496d9a9adc4f444d94bd16cf316f70eed985919.tar.gz |
qt4-native: build lconvert and xmlpatterns
These tools are needed by some Qt projects (e.g. Qt Creator).
(From OE-Core rev: e2f3232fdc2836685549e59dc5c71363d3bbab5f)
Signed-off-by: Jonathan Liu <net147@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-qt/qt4')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-native.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4-native.inc b/meta/recipes-qt/qt4/qt4-native.inc index bf1ddf6552..9faef82774 100644 --- a/meta/recipes-qt/qt4/qt4-native.inc +++ b/meta/recipes-qt/qt4/qt4-native.inc | |||
@@ -65,10 +65,12 @@ TOBUILD = "\ | |||
65 | src/testlib \ | 65 | src/testlib \ |
66 | src/qt3support \ | 66 | src/qt3support \ |
67 | src/tools/uic3 \ | 67 | src/tools/uic3 \ |
68 | tools/linguist/lconvert \ | ||
68 | tools/linguist/lrelease \ | 69 | tools/linguist/lrelease \ |
69 | tools/linguist/lupdate \ | 70 | tools/linguist/lupdate \ |
70 | tools/qdbus/qdbuscpp2xml \ | 71 | tools/qdbus/qdbuscpp2xml \ |
71 | tools/qdbus/qdbusxml2cpp \ | 72 | tools/qdbus/qdbusxml2cpp \ |
73 | tools/xmlpatterns \ | ||
72 | " | 74 | " |
73 | 75 | ||
74 | do_compile() { | 76 | do_compile() { |
@@ -80,7 +82,7 @@ do_compile() { | |||
80 | do_install() { | 82 | do_install() { |
81 | install -d ${D}${bindir}/ | 83 | install -d ${D}${bindir}/ |
82 | install -m 0755 bin/qmake ${D}${bindir}/qmake2 | 84 | install -m 0755 bin/qmake ${D}${bindir}/qmake2 |
83 | for i in moc uic uic3 rcc lrelease lupdate qdbuscpp2xml qdbusxml2cpp; do | 85 | for i in moc uic uic3 rcc lconvert lrelease lupdate qdbuscpp2xml qdbusxml2cpp xmlpatterns; do |
84 | install -m 0755 bin/${i} ${D}${bindir}/${i}4 | 86 | install -m 0755 bin/${i} ${D}${bindir}/${i}4 |
85 | done | 87 | done |
86 | 88 | ||