summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Gloff <mgloff@hotmail.com>2017-10-25 22:59:32 -0500
committerAndrei Gherzan <andrei@gherzan.com>2017-10-27 22:28:31 +0200
commit6a7606a1e45444cdd5b6782208bbe9ed8603b584 (patch)
tree9d76d8b46ee5c0d0107c1cf0202aa154cc822893
parent1ab83ec30a7417e48459f8a19221eaf3415a5ef4 (diff)
downloadmeta-raspberrypi-6a7606a1e45444cdd5b6782208bbe9ed8603b584.tar.gz
bluez5: Replace /lib with ${nonarch_base_libdir}
Use standard /lib variable name and avoid QA errors when usermerge DISTRO_FEATURE is enabled. Signed-off-by: Michael Gloff <mgloff@hotmail.com>
-rw-r--r--recipes-connectivity/bluez5/bluez5_%.bbappend6
1 files changed, 3 insertions, 3 deletions
diff --git a/recipes-connectivity/bluez5/bluez5_%.bbappend b/recipes-connectivity/bluez5/bluez5_%.bbappend
index 03efd5c..eac8d40 100644
--- a/recipes-connectivity/bluez5/bluez5_%.bbappend
+++ b/recipes-connectivity/bluez5/bluez5_%.bbappend
@@ -10,8 +10,8 @@ BCM_BT_SOURCES = " \
10 " 10 "
11 11
12enable_bcm_bluetooth() { 12enable_bcm_bluetooth() {
13 install -d ${D}/lib/firmware/brcm/ 13 install -d ${D}${nonarch_base_libdir}/firmware/brcm/
14 install -m 0644 ${WORKDIR}/BCM43430A1.hcd ${D}/lib/firmware/brcm/BCM43430A1.hcd 14 install -m 0644 ${WORKDIR}/BCM43430A1.hcd ${D}${nonarch_base_libdir}/firmware/brcm/BCM43430A1.hcd
15 15
16 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then 16 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then
17 install -d ${D}${systemd_unitdir}/system 17 install -d ${D}${systemd_unitdir}/system
@@ -20,7 +20,7 @@ enable_bcm_bluetooth() {
20} 20}
21 21
22BCM_BT_FIRMWARE = " \ 22BCM_BT_FIRMWARE = " \
23 /lib/firmware/brcm/BCM43430A1.hcd \ 23 ${nonarch_base_libdir}/firmware/brcm/BCM43430A1.hcd \
24 " 24 "
25 25
26BCM_BT_SERVICE = " brcm43438.service" 26BCM_BT_SERVICE = " brcm43438.service"