From 96b4f44279d022af8930f01d4a09c12df0be07e4 Mon Sep 17 00:00:00 2001 From: Otavio Salvador Date: Sun, 12 Jul 2026 04:54:14 -0300 Subject: global: Drop needless whitespace in assignments Remove the stray space between an assignment's opening quote and its line-continuation backslash, and the space before '%' in inline ${@...} expressions. Generated mechanically by oelint-adv's auto-fix for a single rule (oelint.vars.notneededspace), isolated to one commit. The affected values are whitespace-separated lists (leading space is insignificant) and Python format expressions ("%s"% p is equivalent), so there is no functional change; a re-run of oelint-adv reports the rule clean. Signed-off-by: Otavio Salvador --- recipes-graphics/imx-gpu-sdk/imx-gpu-sdk_6.1.1.bb | 12 ++++++------ recipes-graphics/imx-gpu-sdk/libxdg-shell.bb | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to 'recipes-graphics/imx-gpu-sdk') 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 126f12b92..86b8a9f97 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 @@ -8,7 +8,7 @@ DEPENDS_BACKEND = \ bb.utils.contains('DISTRO_FEATURES', 'x11', ' xrandr', \ '', d), d)}" DEPENDS_MX8 = "" -DEPENDS_MX8:mx8-nxp-bsp = " \ +DEPENDS_MX8:mx8-nxp-bsp = "\ glslang-native \ opencv \ rapidopencl \ @@ -17,10 +17,10 @@ DEPENDS_MX8:mx8-nxp-bsp = " \ vulkan-headers \ vulkan-loader \ " -DEPENDS_MX8:mx8mm-nxp-bsp = " \ +DEPENDS_MX8:mx8mm-nxp-bsp = "\ opencv \ " -DEPENDS = " \ +DEPENDS = "\ assimp \ cmake-native \ devil \ @@ -75,7 +75,7 @@ do_compile () { FslBuild.py -vvvvv -t sdk --UseFeatures [${FEATURES}] --UseExtensions [${EXTENSIONS}] --Variants [WindowSystem=${WINDOW_SYSTEM}] --BuildThreads ${@oe.utils.parallel_make(d)} -c install --CMakeInstallPrefix ${S} } -REMOVALS = " \ +REMOVALS = "\ GLES2/DeBayer \ GLES2/DirectMultiSamplingVideoYUV \ GLES3/DirectMultiSamplingVideoYUV \ @@ -108,7 +108,7 @@ INSANE_SKIP:${PN} += "already-stripped rpaths" # Unfortunately recipes with an empty main package, like header-only libraries, # are not included in the SDK. Use RDEPENDS as a workaround. -RDEPENDS_EMPTY_MAIN_PACKAGE = " \ +RDEPENDS_EMPTY_MAIN_PACKAGE = "\ fmt \ gli \ glm \ @@ -119,7 +119,7 @@ RDEPENDS_EMPTY_MAIN_PACKAGE = " \ stb \ " RDEPENDS_EMPTY_MAIN_PACKAGE_MX8 = "" -RDEPENDS_EMPTY_MAIN_PACKAGE_MX8:mx8-nxp-bsp = " \ +RDEPENDS_EMPTY_MAIN_PACKAGE_MX8:mx8-nxp-bsp = "\ ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'libxdg-shell', '', d)} \ rapidopencl \ rapidopenvx \ diff --git a/recipes-graphics/imx-gpu-sdk/libxdg-shell.bb b/recipes-graphics/imx-gpu-sdk/libxdg-shell.bb index a5637869a..42d60701c 100644 --- a/recipes-graphics/imx-gpu-sdk/libxdg-shell.bb +++ b/recipes-graphics/imx-gpu-sdk/libxdg-shell.bb @@ -12,7 +12,7 @@ S = "${UNPACKDIR}/${BP}/ThirdParty/Recipe/xdg-shell" inherit cmake pkgconfig -EXTRA_OECMAKE = " \ +EXTRA_OECMAKE = "\ -DWAYLAND_SCANNER=${STAGING_BINDIR_NATIVE}/wayland-scanner \ -DWAYLAND_PROTOCOLS_DIR=${STAGING_DATADIR}/wayland-protocols \ " -- cgit v1.2.3-54-g00ecf