diff options
| author | Luciano Dittgen <luciano.dittgen@ossystems.com.br> | 2026-09-04 15:46:13 -0300 |
|---|---|---|
| committer | Luciano Dittgen <luciano.dittgen@ossystems.com.br> | 2026-09-04 15:46:13 -0300 |
| commit | c4e5b04a489f146b347d4c1f00b1257015b60a4f (patch) | |
| tree | b654b26c29e35d736deca03f986aba6480f9356c | |
| parent | 18a3d6a07269b0cca8623aec94ff781fca676733 (diff) | |
| download | meta-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.bb | 12 |
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" | |||
| 5 | LICENSE = "BSD-3-Clause" | 5 | LICENSE = "BSD-3-Clause" |
| 6 | LIC_FILES_CHKSUM = "file://License.md;md5=9d58a2573275ce8c35d79576835dbeb8" | 6 | LIC_FILES_CHKSUM = "file://License.md;md5=9d58a2573275ce8c35d79576835dbeb8" |
| 7 | 7 | ||
| 8 | DEPENDS_BACKEND = \ | 8 | DEPENDS_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)}" | ||
| 12 | DEPENDS_MX8 = "" | 10 | DEPENDS_MX8 = "" |
| 13 | DEPENDS_MX8:mx8-nxp-bsp = "\ | 11 | DEPENDS_MX8:mx8-nxp-bsp = "\ |
| 14 | glslang-native \ | 12 | glslang-native \ |
| @@ -46,10 +44,8 @@ DEPENDS:append:imxgpu3d = " virtual/libgles2" | |||
| 46 | 44 | ||
| 47 | require imx-gpu-sdk-src.inc | 45 | require imx-gpu-sdk-src.inc |
| 48 | 46 | ||
| 49 | WINDOW_SYSTEM = \ | 47 | WINDOW_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 |
