From 671410bb4080909ff9e112c584bd9348718be942 Mon Sep 17 00:00:00 2001 From: Mikko Levonmaa Date: Wed, 24 Oct 2012 15:28:08 -0700 Subject: [PATCH] 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 --- recipes-qt/qt5/qt5-native.inc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/recipes-qt/qt5/qt5-native.inc b/recipes-qt/qt5/qt5-native.inc index f46817d389..048bf41031 100644 --- a/recipes-qt/qt5/qt5-native.inc +++ b/recipes-qt/qt5/qt5-native.inc @@ -39,6 +39,8 @@ EXTRA_OECONF = "-prefix ${prefix} \ -no-iconv \ -no-fast \ -silent \ + -nomake examples \ + -nomake tests \ -no-rpath" do_configure() { @@ -47,3 +49,9 @@ do_configure() { (echo o; echo yes) | ./configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}" } + +do_install() { + install -d ${D}${bindir}/ + # Install only the qmake bin for now. + install -m 0755 ${S}/bin/qmake ${D}${bindir}/qmake +}