diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-06 15:17:14 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-10-06 15:17:14 +0100 |
commit | 5eee854f53e2c1f05d390e96957c2df8e34dea89 (patch) | |
tree | add615fbbbd11c13a2d7b0a6a81e0f391bc370f3 /meta/recipes-qt/qt4/qt4-tools-native.inc | |
parent | 35d095c282aa27bb2c5b90b9ebafeaa4a3de907e (diff) | |
download | poky-5eee854f53e2c1f05d390e96957c2df8e34dea89.tar.gz |
qt4-tools-native: Fix compile failures
fontconfig/freetype are not listed in the dependencies, neither are any of the
X components yet this recipe appears to be building the whole UI framework, not
just the tools.
It turns out this is a dependency for uic3 and qdbus. Since at this time we don't
require these, remove them from the build.
Its likely cross versions of those specific tools would need to be added due to
their dependency on the windowing system compilation.
[BUGID #390]
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta/recipes-qt/qt4/qt4-tools-native.inc')
-rw-r--r-- | meta/recipes-qt/qt4/qt4-tools-native.inc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/meta/recipes-qt/qt4/qt4-tools-native.inc b/meta/recipes-qt/qt4/qt4-tools-native.inc index 7621d629f1..9c78e7cd5e 100644 --- a/meta/recipes-qt/qt4/qt4-tools-native.inc +++ b/meta/recipes-qt/qt4/qt4-tools-native.inc | |||
@@ -43,11 +43,8 @@ TOBUILD = "\ | |||
43 | src/tools/uic \ | 43 | src/tools/uic \ |
44 | src/tools/rcc \ | 44 | src/tools/rcc \ |
45 | src/network \ | 45 | src/network \ |
46 | src/gui \ | ||
47 | src/tools/uic3 \ | ||
48 | tools/linguist/lrelease \ | 46 | tools/linguist/lrelease \ |
49 | tools/linguist/lupdate \ | 47 | tools/linguist/lupdate \ |
50 | tools/qdbus \ | ||
51 | " | 48 | " |
52 | 49 | ||
53 | do_compile() { | 50 | do_compile() { |
@@ -61,7 +58,7 @@ NATIVE_INSTALL_WORKS = "1" | |||
61 | do_install() { | 58 | do_install() { |
62 | install -d ${D}${bindir}/ | 59 | install -d ${D}${bindir}/ |
63 | install -m 0755 bin/qmake ${D}${bindir}/qmake2 | 60 | install -m 0755 bin/qmake ${D}${bindir}/qmake2 |
64 | for i in moc uic uic3 rcc lrelease lupdate qdbuscpp2xml qdbusxml2cpp; do | 61 | for i in moc uic rcc lrelease lupdate; do |
65 | install -m 0755 bin/${i} ${D}${bindir}/${i}4 | 62 | install -m 0755 bin/${i} ${D}${bindir}/${i}4 |
66 | done | 63 | done |
67 | 64 | ||