summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-09-11 12:13:01 -0300
committerLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-09-11 13:59:25 -0300
commit35b2c391ad78b2695aaba5390a70ad763a3ae68f (patch)
tree4a3c9a3539d8a9d9752062ed63240f1f8880955b
parent8fbda16f48cc6848e6d7c6bf4ad1971876a02be2 (diff)
downloadmeta-freescale-35b2c391ad78b2695aaba5390a70ad763a3ae68f.tar.gz
qtbase: Drop the redundant leading space in PACKAGECONFIG_GL
The line continuation already separates the value from the entries below; PACKAGECONFIG_PLATFORM:imxgpu3d in this same bbappend already opens with "\. Each override was validated on the machine that selects it, with do_configure forced and buildhistory unchanged: imxgpu2d on imx6slevk, imxgpu3d on imx8mm-lpddr4-evk. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
-rw-r--r--dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend4
1 files changed, 2 insertions, 2 deletions
diff --git a/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend b/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend
index b11f6c646..4dbc9a7ef 100644
--- a/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend
+++ b/dynamic-layers/qt5-layer/recipes-qt/qt5/qtbase_%.bbappend
@@ -25,10 +25,10 @@ PACKAGECONFIG_GL_IMX_GPU:mx8-nxp-bsp = "gbm kms"
25PACKAGECONFIG_GL_IMX_GPU:mx95-nxp-bsp = "gbm kms" 25PACKAGECONFIG_GL_IMX_GPU:mx95-nxp-bsp = "gbm kms"
26 26
27PACKAGECONFIG_GL:imxpxp = "gles2" 27PACKAGECONFIG_GL:imxpxp = "gles2"
28PACKAGECONFIG_GL:imxgpu2d = " \ 28PACKAGECONFIG_GL:imxgpu2d = "\
29 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gl', '', d)} \ 29 ${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'gl', '', d)} \
30 ${PACKAGECONFIG_GL_IMX_GPU}" 30 ${PACKAGECONFIG_GL_IMX_GPU}"
31PACKAGECONFIG_GL:imxgpu3d = " \ 31PACKAGECONFIG_GL:imxgpu3d = "\
32 gles2 \ 32 gles2 \
33 ${PACKAGECONFIG_GL_IMX_GPU}" 33 ${PACKAGECONFIG_GL_IMX_GPU}"
34PACKAGECONFIG_GL:use-mainline-bsp ?= "gles2 gbm kms" 34PACKAGECONFIG_GL:use-mainline-bsp ?= "gles2 gbm kms"