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 +}