From: Khalifa Rouis Date: Tue, 24 Mar 2026 20:49:19 +0000 (+0100) Subject: weston-init: fix variable expansion typo in weston-start X-Git-Tag: yocto-6.0_M3~174 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a09260982be87018e542d98ef462a4f22b6ca42b;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git weston-init: fix variable expansion typo in weston-start The variable weston_modules was incorrectly enclosed as {$weston_modules} instead of ${weston_modules}. This typo prevents proper bash variable expansion when checking for and appending Weston module arguments. This commit corrects the syntax to ensure the modules are properly evaluated. Fixes: c8aa0222ce2b ("weston: wrapper for weston modules argument") Signed-off-by: Khalifa Rouis Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-graphics/wayland/weston-init/weston-start b/meta/recipes-graphics/wayland/weston-init/weston-start index 3b13a0047a..38aa0c6e27 100755 --- a/meta/recipes-graphics/wayland/weston-init/weston-start +++ b/meta/recipes-graphics/wayland/weston-init/weston-start @@ -50,7 +50,7 @@ if [ -d "$modules_dir" ]; then # process module . $m - if [[ x"{$weston_modules}" != "x" ]]; then + if [[ x"${weston_modules}" != "x" ]]; then add_weston_argument "${weston_modules}" fi; done