summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5/qt5-native.inc
diff options
context:
space:
mode:
authorMikko Levonmaa <mikko.levonmaa@palm.com>2012-10-24 15:28:08 -0700
committerMikko Levonmaa <mikko.levonmaa@palm.com>2012-10-24 15:46:25 -0700
commit671410bb4080909ff9e112c584bd9348718be942 (patch)
treef99cb069a915e6658e1b067dd8fee63f1b8cd5cd /recipes-qt/qt5/qt5-native.inc
parentc1d83958f5887c1988d56dcffb4596bb9f7ab6cb (diff)
downloadmeta-qt5-671410bb4080909ff9e112c584bd9348718be942.tar.gz
qt5-native now compiles and installs
Disabled tests and exmaples in the native build. Also do_install now installs the qmake host binary Signed-off-by: Mikko Levonmaa <mikko.levonmaa@gmail.com>
Diffstat (limited to 'recipes-qt/qt5/qt5-native.inc')
-rw-r--r--recipes-qt/qt5/qt5-native.inc8
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes-qt/qt5/qt5-native.inc b/recipes-qt/qt5/qt5-native.inc
index f46817d3..048bf410 100644
--- a/recipes-qt/qt5/qt5-native.inc
+++ b/recipes-qt/qt5/qt5-native.inc
@@ -39,6 +39,8 @@ EXTRA_OECONF = "-prefix ${prefix} \
39 -no-iconv \ 39 -no-iconv \
40 -no-fast \ 40 -no-fast \
41 -silent \ 41 -silent \
42 -nomake examples \
43 -nomake tests \
42 -no-rpath" 44 -no-rpath"
43 45
44do_configure() { 46do_configure() {
@@ -47,3 +49,9 @@ do_configure() {
47 49
48 (echo o; echo yes) | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}" 50 (echo o; echo yes) | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
49} 51}
52
53do_install() {
54 install -d ${D}${bindir}/
55 # Install only the qmake bin for now.
56 install -m 0755 ${S}/bin/qmake ${D}${bindir}/qmake
57}