From b7f957063c3e58ce845830d6550aa6b512c3abef Mon Sep 17 00:00:00 2001 From: Naoto Yamaguchi Date: Sat, 21 May 2022 14:35:48 +0900 Subject: Fix a recipe issue cased by yocto update After the yocto update to kirkstone, meta-agl-lxc caused some recipe issue. Some r-car bsp modification recipe has mismatch to new version. Container config recipe has md5 hash mismatch with common license. Fix path from /lib/systemd/ to ${D}/${systemd_unitdir}/. This patch fix these issue. Bug-AGL : SPEC-4394 Change-Id: Ibf40f74f028b59dcd59431916eeaeac4f4c56e16 Signed-off-by: Naoto Yamaguchi --- meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-agl-lxc/recipes-demo/momiplay') diff --git a/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb b/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb index 25674fbc..02fc6f66 100644 --- a/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb +++ b/meta-agl-lxc/recipes-demo/momiplay/momiplay_git.bb @@ -27,8 +27,8 @@ inherit qmake5 systemd QT_INSTALL_PREFIX = "/usr" do_install:append() { - install -d ${D}/lib/systemd/system - install -m 0644 ${WORKDIR}/momiplay.service ${D}/lib/systemd/system + install -d ${D}/${systemd_unitdir}/system + install -m 0644 ${WORKDIR}/momiplay.service ${D}/${systemd_unitdir}/system install -m 0755 -d ${D}${sysconfdir}/default/ install -m 0755 ${WORKDIR}/momiplay ${D}${sysconfdir}/default/ -- cgit 1.2.3-korg