xcb-proto installs its python module into the ABI-less site-packages directory, then in turn libxcb won't find it.
Move the installed site-packages directory to the correct location. Signed-off-by: Zoltán Böszörményi <[email protected]> --- meta/recipes-graphics/xorg-proto/xcb-proto_1.17.0.bb | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/meta/recipes-graphics/xorg-proto/xcb-proto_1.17.0.bb b/meta/recipes-graphics/xorg-proto/xcb-proto_1.17.0.bb index 2a78a87e77..dd42dba374 100644 --- a/meta/recipes-graphics/xorg-proto/xcb-proto_1.17.0.bb +++ b/meta/recipes-graphics/xorg-proto/xcb-proto_1.17.0.bb @@ -19,6 +19,12 @@ SRC_URI[sha256sum] = "2c1bacd2110f4799f74de6ebb714b94cf6f80fb112316b1219480fd225 inherit autotools pkgconfig python3native +do_install:append () { + if [ ! -d ${D}${libdir}/${PYTHON_DIR} ]; then + mv ${D}${libdir}/python${PYTHON_BASEVERSION} ${D}${libdir}/${PYTHON_DIR} + fi +} + PACKAGES += "python-xcbgen" FILES:${PN} = "" -- 2.53.0
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#233887): https://lists.openembedded.org/g/openembedded-core/message/233887 Mute This Topic: https://lists.openembedded.org/mt/118499161/21656 Group Owner: [email protected] Unsubscribe: https://lists.openembedded.org/g/openembedded-core/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
