From e9c61a9e6f51f500df349f8fe569ec095a1b8d2b Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Wed, 3 Apr 2013 16:47:26 +0200 Subject: qmake: fix MAKEFLAGS when PARALLEL_MAKE has space * quotes are needed, because some people have '-j 9' instead of '-j9' * this can in theory cause PARALLEL_MAKE x PARALLEL_MAKE threads, because MAKE itself is using PARALLEL_MAKE threads to run inner makes --- recipes-qt/qt5/qtbase-native.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'recipes-qt/qt5') diff --git a/recipes-qt/qt5/qtbase-native.inc b/recipes-qt/qt5/qtbase-native.inc index 43e32530..d9cc4870 100644 --- a/recipes-qt/qt5/qtbase-native.inc +++ b/recipes-qt/qt5/qtbase-native.inc @@ -18,7 +18,7 @@ SRC_URI += " \ " EXTRA_ENV = 'MAKE="make -e ${PARALLEL_MAKE}"' -EXTRA_OEMAKE = ' MAKEFLAGS=${PARALLEL_MAKE} ' +EXTRA_OEMAKE = " MAKEFLAGS='${PARALLEL_MAKE}'" EXTRA_OECONF = " \ -prefix ${prefix} \ -- cgit v1.2.3-54-g00ecf