From 2183bcb597c78ed0ed7b21aef0c5d19e858535ab Mon Sep 17 00:00:00 2001 From: Jan-Simon Möller Date: Wed, 18 Mar 2020 19:37:06 +0100 Subject: Fix build issue in bluez5 bbappend file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-agl-profile-core') 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 } -- cgit 1.2.3-korg