diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2020-03-18 19:37:06 +0100 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2020-03-18 21:34:57 +0000 |
commit | 2183bcb597c78ed0ed7b21aef0c5d19e858535ab (patch) | |
tree | d01baf2755f251ac6655df92e1ac3197bd184673 /meta-agl-profile-core/recipes-connectivity/bluez5 | |
parent | 5c4d183e5ff2228b8daacac090e1176bb198d845 (diff) |
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 <jsmoeller@linuxfoundation.org>
Change-Id: Ife8b374379937e87cf3c045f105c3eb121f0941d
Diffstat (limited to 'meta-agl-profile-core/recipes-connectivity/bluez5')
-rw-r--r-- | meta-agl-profile-core/recipes-connectivity/bluez5/bluez5_%.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
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 } |