diff options
author | Scott Murray <scott.murray@konsulko.com> | 2021-11-17 16:05:20 -0500 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2021-11-18 15:18:51 +0000 |
commit | ceda64c1ae17a802ae6c345949bd4025ac14ece7 (patch) | |
tree | dfeec83d09c1615bbdf0c23dc6877b4fcb9caa35 /meta-agl-core/recipes-graphics/wayland | |
parent | 44e51139a42e385592f6c57d9f200f7aed080996 (diff) |
Fix a couple of override syntax issues
Fix a couple of spots where use of the old-style override syntax has
accidentally been added.
Bug-AGL: SPEC-4052
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Change-Id: I7f4d5b0ba0bf813f3e72b783e30cadc5ba0e030d
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/26874
Tested-by: Jenkins Job builder account
ci-image-build: Jenkins Job builder account
ci-image-boot-test: Jenkins Job builder account
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'meta-agl-core/recipes-graphics/wayland')
-rw-r--r-- | meta-agl-core/recipes-graphics/wayland/weston-init_aglcore.inc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta-agl-core/recipes-graphics/wayland/weston-init_aglcore.inc b/meta-agl-core/recipes-graphics/wayland/weston-init_aglcore.inc index 070f5f8b5..8966700ac 100644 --- a/meta-agl-core/recipes-graphics/wayland/weston-init_aglcore.inc +++ b/meta-agl-core/recipes-graphics/wayland/weston-init_aglcore.inc @@ -43,12 +43,12 @@ inherit useradd USERADD_PACKAGES = "${PN}" -FILES_${PN} += "\ +FILES:${PN} += "\ ${systemd_system_unitdir}/weston.service \ ${systemd_system_unitdir}/weston.socket \ /home/weston \ " -SYSTEMD_SERVICE_${PN} = "weston.service weston.socket" -USERADD_PARAM_${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input weston" -GROUPADD_PARAM_${PN} = "-r wayland" +SYSTEMD_SERVICE:${PN} = "weston.service weston.socket" +USERADD_PARAM:${PN} = "--home /home/weston --shell /bin/sh --user-group -G video,input weston" +GROUPADD_PARAM:${PN} = "-r wayland" |