From: Jan-Simon Möller Date: Wed, 18 Mar 2020 18:37:06 +0000 (+0100) Subject: Fix build issue in bluez5 bbappend file X-Git-Tag: 9.99.1~80 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=2183bcb597c78ed0ed7b21aef0c5d19e858535ab;p=AGL%2Fmeta-agl.git Fix build issue in bluez5 bbappend file The commit b1c5541c2 introduced a 'mkdir -p ${systemd_system_unitdir}' which should be prefixed with ${D}. It produces a build error (permission denied on do_install). Fix it. Signed-off-by: Jan-Simon Möller Change-Id: Ife8b374379937e87cf3c045f105c3eb121f0941d --- diff --git a/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend b/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend index db5b09503..55459c1ac 100644 --- a/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend +++ b/meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend @@ -19,7 +19,7 @@ do_install_append() { install -m 0644 ${WORKDIR}/tmpdir.conf ${D}${systemd_user_unitdir}/obex.service.d/tmpdir.conf mkdir -p ${D}/etc/systemd/user ln -sf ${systemd_user_unitdir}/obex.service ${D}/etc/systemd/user/dbus-org.bluez.obex.service - mkdir -p ${systemd_system_unitdir} + mkdir -p ${D}${systemd_system_unitdir} install -m 0644 ${WORKDIR}/bluetooth.service ${D}${systemd_system_unitdir} fi }