diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2011-08-10 12:40:20 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-08-15 15:13:34 +0100 |
commit | 11f456f4f5c1d4b2aad93856ff6cbb4d7ce3969e (patch) | |
tree | 230728571c22b5830f4a1060e7fe06990c587b3a | |
parent | a6fd9b8104e8d3cbfce0376811aeeef746ad6889 (diff) | |
download | openembedded-core-11f456f4f5c1d4b2aad93856ff6cbb4d7ce3969e.tar.gz openembedded-core-11f456f4f5c1d4b2aad93856ff6cbb4d7ce3969e.tar.bz2 openembedded-core-11f456f4f5c1d4b2aad93856ff6cbb4d7ce3969e.zip |
qt4-native: restore build of uic3, qdbuscpp2xml and qdbusxml2cpp
These tools are required to build some external utilities (such as those
found in KDE). We avoid building qdbus and qdbusviewer as these are
not required.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
-rw-r--r-- | meta/recipes-qt/qt4/qt4-native.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-qt/qt4/qt4-native.inc b/meta/recipes-qt/qt4/qt4-native.inc index 3baea20a1c..7ed6a632d2 100644 --- a/meta/recipes-qt/qt4/qt4-native.inc +++ b/meta/recipes-qt/qt4/qt4-native.inc @@ -54,8 +54,11 @@ TOBUILD = "\ src/gui \ src/testlib \ src/qt3support \ + src/tools/uic3 \ tools/linguist/lrelease \ tools/linguist/lupdate \ + tools/qdbus/qdbuscpp2xml \ + tools/qdbus/qdbusxml2cpp \ " do_compile() { @@ -67,7 +70,7 @@ do_compile() { do_install() { install -d ${D}${bindir}/ install -m 0755 bin/qmake ${D}${bindir}/qmake2 - for i in moc uic rcc lrelease lupdate; do + for i in moc uic uic3 rcc lrelease lupdate qdbuscpp2xml qdbusxml2cpp; do install -m 0755 bin/${i} ${D}${bindir}/${i}4 done |