From 274b114844bd540678c1572e224ef47506636e11 Mon Sep 17 00:00:00 2001 From: Samuli Piippo Date: Mon, 1 Dec 2025 05:35:58 +0000 Subject: [PATCH] qtbase: remove leading whitespace from QT_QPA_DEFAULT_PLATFORM Leading whitespace caused the CMake to ignore the default platform value. Amends 4cacc39a20dea7cec8bb5e9510a62db5eb23afe3. Fixes: QTBUG-142226 Change-Id: I1742a5ff7540da554fa7fe3e1f590f304bcf6f75 Reviewed-by: Mikko Gronoff --- recipes-qt/qt6/qtbase_git.bb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/recipes-qt/qt6/qtbase_git.bb b/recipes-qt/qt6/qtbase_git.bb index b2355d6..ae6db99 100644 --- a/recipes-qt/qt6/qtbase_git.bb +++ b/recipes-qt/qt6/qtbase_git.bb @@ -101,10 +101,10 @@ OPENSSL_LINKING_MODE ?= "runtime" # Default platform plugin QT_QPA_DEFAULT_PLATFORM ?= "\ - ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-egl', \ - bb.utils.contains('DISTRO_FEATURES', 'x11', 'xcb', \ - bb.utils.contains('PACKAGECONFIG', 'eglfs', 'eglfs', \ - 'linuxfb', d), d), d)} \ +${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'wayland-egl', \ + bb.utils.contains('DISTRO_FEATURES', 'x11', 'xcb', \ + bb.utils.contains('PACKAGECONFIG', 'eglfs', 'eglfs', \ + 'linuxfb', d), d), d)}\ " PACKAGECONFIG[ltcg] = "-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON,-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=OFF"