diff options
author | Max Tomago <max.tomago@codethink.co.uk> | 2019-11-05 18:47:31 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-11-19 16:28:34 +0000 |
commit | 2ed82aa378099d18db268c146d9a53756c5f2890 (patch) | |
tree | 60df786ad3c13244af6217ccb07df654ed2625e2 /meta-agl-profile-core/recipes-core | |
parent | b25f4ec97c4ef95dbbb85423fffe9be753b52f51 (diff) |
systemd: Install canbus network script in nonarch_base_libdir
This is the directory where systemd keeps network scripts (e.g /lib
rather than /lib64). Installing them in base_libdir breaks the build for
multilib targets.
Bug-AGL: SPEC-2966
Change-Id: If1f780a8cfed29f22f46b9ff1d08f36dee3296ee
Signed-off-by: Max Tomago <max.tomago@codethink.co.uk>
Diffstat (limited to 'meta-agl-profile-core/recipes-core')
-rw-r--r-- | meta-agl-profile-core/recipes-core/systemd/systemd_%.bbappend | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-agl-profile-core/recipes-core/systemd/systemd_%.bbappend b/meta-agl-profile-core/recipes-core/systemd/systemd_%.bbappend index 8c7da4390..2d1427366 100644 --- a/meta-agl-profile-core/recipes-core/systemd/systemd_%.bbappend +++ b/meta-agl-profile-core/recipes-core/systemd/systemd_%.bbappend @@ -16,7 +16,7 @@ do_install_append() { install -m 644 -p -D ${WORKDIR}/e2fsck.conf ${D}${sysconfdir}/e2fsck.conf # Install canbus network script - install -m 0644 ${WORKDIR}/canbus-can.network ${D}${base_libdir}/systemd/network/60-canbus-can.network + install -m 0644 ${WORKDIR}/canbus-can.network ${D}${nonarch_base_libdir}/systemd/network/60-canbus-can.network if ${@bb.utils.contains('VIRTUAL-RUNTIME_net_manager','systemd','true','false',d)}; then # Install DHCP configuration for Ethernet adapters |