aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-qt
diff options
context:
space:
mode:
authorJulien Brianceau \(jbriance\) <jbriance@cisco.com>2015-05-05 14:20:56 +0000
committerMartin Jansa <Martin.Jansa@gmail.com>2015-05-13 14:40:52 +0200
commitbb20ed60fc596098940f18bd2418a8bdc866bec3 (patch)
tree158299860b245ec6a84ef82ef4ac22ed7acec418 /recipes-qt
parent80de39d556dd71dff6feb347278e92e291d8d098 (diff)
qtbase-native: speed up configure task
* Use parallel make to speed up build of qmake during configure task * Take the opportunity to use clean configure parameters to use opensource license instead of "(echo o; echo yes) |" trick. Signed-off-by: Julien Brianceau <jbriance@cisco.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes-qt')
-rw-r--r--recipes-qt/qt5/qtbase-native.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-qt/qt5/qtbase-native.inc b/recipes-qt/qt5/qtbase-native.inc
index 7b44fb75..b6c868d2 100644
--- a/recipes-qt/qt5/qtbase-native.inc
+++ b/recipes-qt/qt5/qtbase-native.inc
@@ -83,7 +83,7 @@ export OE_QMAKE_AR
export OE_QMAKE_STRIP
do_configure_prepend() {
- (echo o; echo yes) | ${S}/configure ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
+ MAKEFLAGS="${PARALLEL_MAKE}" ${S}/configure -opensource -confirm-license ${EXTRA_OECONF} || die "Configuring qt failed. EXTRA_OECONF was ${EXTRA_OECONF}"
bin/qmake ${OE_QMAKE_DEBUG_OUTPUT} ${S} -o Makefile || die "Configuring qt with qmake failed. EXTRA_OECONF was ${EXTRA_OECONF}"
}