diff options
| author | Khem Raj <raj.khem@gmail.com> | 2018-11-26 22:33:53 -0800 |
|---|---|---|
| committer | Otavio Salvador <otavio@ossystems.com.br> | 2018-11-29 07:16:36 -0200 |
| commit | f22750291b224a3ee68456f0319ba18d428e197a (patch) | |
| tree | ce9ee16c7fb9abe999fa7226d1caeb76bcad1dd9 /recipes-python | |
| parent | fe453ec4a26a0e8a1c7d50800b0115db7f15f0c6 (diff) | |
| download | meta-qt5-f22750291b224a3ee68456f0319ba18d428e197a.tar.gz | |
python-pyqt5: MAKEFLAGS pass -j 1 via MAKEFLAGS during do_install
The fix to reset PARALLEL_MAKEINST isnt enough here because qmake
bbclass creates EXTRA_OEMAKE where it passes the -jX via MAKEFLAGS
its better to set MAKEFLAGS in do_install to undo that effect
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes-python')
| -rw-r--r-- | recipes-python/pyqt5/python-pyqt5.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-python/pyqt5/python-pyqt5.inc b/recipes-python/pyqt5/python-pyqt5.inc index 2eb263dd..4b1630d4 100644 --- a/recipes-python/pyqt5/python-pyqt5.inc +++ b/recipes-python/pyqt5/python-pyqt5.inc | |||
| @@ -56,7 +56,7 @@ do_compile() { | |||
| 56 | 56 | ||
| 57 | do_install() { | 57 | do_install() { |
| 58 | cd ${S} | 58 | cd ${S} |
| 59 | oe_runmake install | 59 | oe_runmake MAKEFLAGS='-j 1' install |
| 60 | } | 60 | } |
| 61 | 61 | ||
| 62 | FILES_${PN} += "${libdir}/${PYTHON_DIR}${PYTHON_ABI}/site-packages ${datadir}/sip/PyQt5/" | 62 | FILES_${PN} += "${libdir}/${PYTHON_DIR}${PYTHON_ABI}/site-packages ${datadir}/sip/PyQt5/" |
