diff mbox series

[2/3] libportal: disable qt6 backend explicitly to ensure deterministic builds

Message ID 20260916160246.276107-2-ross.burton@arm.com
State New
Headers show
Series [1/3] seatd: add PACKAGECONFIG for the man-pages | expand

Commit Message

Ross Burton Sept. 16, 2026, 4:02 p.m. UTC
In theory we can just add a PACKAGECONFIG for qt6 that uses meta-qt6,
but that fails to find the native binaries in the sysroot and I don't
know how to fix this.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/recipes-gnome/libportal/libportal_0.11.0.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/recipes-gnome/libportal/libportal_0.11.0.bb b/meta/recipes-gnome/libportal/libportal_0.11.0.bb
index 4d18bb4acdb..9e5e84947e0 100644
--- a/meta/recipes-gnome/libportal/libportal_0.11.0.bb
+++ b/meta/recipes-gnome/libportal/libportal_0.11.0.bb
@@ -22,7 +22,8 @@  PACKAGECONFIG ??= "${@oe.utils.vartrue('CAN_GTK', 'gtk3', '', d)} \
 PACKAGECONFIG[gtk3] = "-Dbackend-gtk3=enabled,-Dbackend-gtk3=disabled,gtk+3"
 PACKAGECONFIG[gtk4] = "-Dbackend-gtk4=enabled,-Dbackend-gtk4=disabled,gtk4"
 
-EXTRA_OEMESON = "${@bb.utils.contains('GI_DATA_ENABLED', 'True', '-Dvapi=true', '-Dvapi=false', d)} -Dbackend-qt5=disabled"
+EXTRA_OEMESON = "${@bb.utils.contains('GI_DATA_ENABLED', 'True', '-Dvapi=true', '-Dvapi=false', d)} \
+                 -Dbackend-qt5=disabled -Dbackend-qt6=disabled"
 
 PACKAGES =+ "${PN}-gtk3 ${PN}-gtk4"