summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-09-04 15:46:13 -0300
committerLuciano Dittgen <luciano.dittgen@ossystems.com.br>2026-09-04 15:46:13 -0300
commitc4e5b04a489f146b347d4c1f00b1257015b60a4f (patch)
treeb654b26c29e35d736deca03f986aba6480f9356c
parent18a3d6a07269b0cca8623aec94ff781fca676733 (diff)
downloadmeta-freescale-c4e5b04a489f146b347d4c1f00b1257015b60a4f.tar.gz
imx-gpu-sdk: Quote DEPENDS_BACKEND and WINDOW_SYSTEM on the assignment line
A line continuation before the opening quote hides the value from every reader and tool that looks at the assignment line. Only the Python source inside ${@...} is reflowed, so both values are unchanged. Tested with bitbake imx-gpu-sdk -C configure on imx8mm-lpddr4-evk (fslc-wayland), where the wayland branch of both expressions is taken; the imx-gpu-sdk buildhistory is byte-identical. Signed-off-by: Luciano Dittgen <luciano.dittgen@ossystems.com.br>
-rw-r--r--recipes-graphics/imx-gpu-sdk/imx-gpu-sdk_6.1.1.bb12
1 files changed, 4 insertions, 8 deletions
diff --git a/recipes-graphics/imx-gpu-sdk/imx-gpu-sdk_6.1.1.bb b/recipes-graphics/imx-gpu-sdk/imx-gpu-sdk_6.1.1.bb
index 631fc3fdd..2873d16d0 100644
--- a/recipes-graphics/imx-gpu-sdk/imx-gpu-sdk_6.1.1.bb
+++ b/recipes-graphics/imx-gpu-sdk/imx-gpu-sdk_6.1.1.bb
@@ -5,10 +5,8 @@ SECTION = "graphics"
5LICENSE = "BSD-3-Clause" 5LICENSE = "BSD-3-Clause"
6LIC_FILES_CHKSUM = "file://License.md;md5=9d58a2573275ce8c35d79576835dbeb8" 6LIC_FILES_CHKSUM = "file://License.md;md5=9d58a2573275ce8c35d79576835dbeb8"
7 7
8DEPENDS_BACKEND = \ 8DEPENDS_BACKEND = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', ' libxdg-shell wayland', \
9 "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', ' libxdg-shell wayland', \ 9 bb.utils.contains('DISTRO_FEATURES', 'x11', ' xrandr', '', d), d)}"
10 bb.utils.contains('DISTRO_FEATURES', 'x11', ' xrandr', \
11 '', d), d)}"
12DEPENDS_MX8 = "" 10DEPENDS_MX8 = ""
13DEPENDS_MX8:mx8-nxp-bsp = "\ 11DEPENDS_MX8:mx8-nxp-bsp = "\
14 glslang-native \ 12 glslang-native \
@@ -46,10 +44,8 @@ DEPENDS:append:imxgpu3d = " virtual/libgles2"
46 44
47require imx-gpu-sdk-src.inc 45require imx-gpu-sdk-src.inc
48 46
49WINDOW_SYSTEM = \ 47WINDOW_SYSTEM = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'Wayland_XDG', \
50 "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'Wayland_XDG', \ 48 bb.utils.contains('DISTRO_FEATURES', 'x11', 'X11', 'FB', d), d)}"
51 bb.utils.contains('DISTRO_FEATURES', 'x11', 'X11', \
52 'FB', d), d)}"
53 49
54# FEATURES is a comma-separated list passed to FslBuild.py as 50# FEATURES is a comma-separated list passed to FslBuild.py as
55# --UseFeatures [${FEATURES}], so each appended token starts with a comma 51# --UseFeatures [${FEATURES}], so each appended token starts with a comma