From: Tom Hochstein Date: Fri, 11 Feb 2022 19:43:47 +0000 (-0600) Subject: weston-init: Set bindir properly in weston.ini X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=793eba10e98c650caeadd2ef03bb9c6162c169b6;p=meta-freescale.git weston-init: Set bindir properly in weston.ini The customized weston.ini is installed in the rootfs with an unresolved bindir variable. Signed-off-by: Tom Hochstein --- diff --git a/recipes-graphics/wayland/weston-init.bbappend b/recipes-graphics/wayland/weston-init.bbappend index 5710e9b5..6a5ede37 100644 --- a/recipes-graphics/wayland/weston-init.bbappend +++ b/recipes-graphics/wayland/weston-init.bbappend @@ -48,4 +48,5 @@ do_install:append() { for assignment in ${INI_UNCOMMENT_ASSIGNMENTS}; do uncomment "$assignment" ${D}${sysconfdir}/xdg/weston/weston.ini done + sed -i -e 's,@bindir@,${bindir},g' ${D}${sysconfdir}/xdg/weston/weston.ini }