From 51c22b4ba905f8e0a0f75189715eab628cefab6c Mon Sep 17 00:00:00 2001 From: Florent AUMAITRE Date: Mon, 3 Jan 2022 17:54:51 +0100 Subject: [PATCH] package/python-pyqt5: Fix per-package build pyqt5 uses qmake internally, but is python package rather than a qmake package. Therefore, we need to manually apply the same fixup as for qmake packages. Without this, top-level parallel build may fail because dependencies are looked for in the qt5 per-package staging directory instead of the python-pyqt5 one. Signed-off-by: Florent AUMAITRE Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/python-pyqt5/python-pyqt5.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/python-pyqt5/python-pyqt5.mk b/package/python-pyqt5/python-pyqt5.mk index 8f28c90d15..b05043563e 100644 --- a/package/python-pyqt5/python-pyqt5.mk +++ b/package/python-pyqt5/python-pyqt5.mk @@ -152,6 +152,11 @@ define PYTHON_PYQT5_GENERATE_QTDETAIL ) endef +# The file "qt.conf" can be used to override the hard-coded paths that are +# compiled into the Qt library. We need it to make "qmake" relocatable and +# tweak the per-package install pathes +PYTHON_PYQT5_PRE_CONFIGURE_HOOKS += QT5_QT_CONF_FIXUP + PYTHON_PYQT5_CONF_OPTS = \ --bindir $(TARGET_DIR)/usr/bin \ --destdir $(TARGET_DIR)/usr/lib/$(PYTHON_PYQT5_PYTHON_DIR)/site-packages \