summaryrefslogtreecommitdiffstats
path: root/recipes-qt/qt5
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2013-04-03 16:47:26 +0200
committerMartin Jansa <Martin.Jansa@gmail.com>2013-04-17 16:10:01 +0200
commite9c61a9e6f51f500df349f8fe569ec095a1b8d2b (patch)
treee84af51e857011123503d8d74f8c89b8198ec20e /recipes-qt/qt5
parentc27dac3e4e11fb512a1483dacb8a4dcceb827323 (diff)
downloadmeta-qt5-e9c61a9e6f51f500df349f8fe569ec095a1b8d2b.tar.gz
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
Diffstat (limited to 'recipes-qt/qt5')
-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 43e32530..d9cc4870 100644
--- a/recipes-qt/qt5/qtbase-native.inc
+++ b/recipes-qt/qt5/qtbase-native.inc
@@ -18,7 +18,7 @@ SRC_URI += " \
18" 18"
19 19
20EXTRA_ENV = 'MAKE="make -e ${PARALLEL_MAKE}"' 20EXTRA_ENV = 'MAKE="make -e ${PARALLEL_MAKE}"'
21EXTRA_OEMAKE = ' MAKEFLAGS=${PARALLEL_MAKE} ' 21EXTRA_OEMAKE = " MAKEFLAGS='${PARALLEL_MAKE}'"
22 22
23EXTRA_OECONF = " \ 23EXTRA_OECONF = " \
24 -prefix ${prefix} \ 24 -prefix ${prefix} \