From f80ff75c448668f3c68166fd37ef4c4ebbcbc453 Mon Sep 17 00:00:00 2001 From: Fabio Berton Date: Tue, 31 Oct 2017 17:51:22 -0200 Subject: arptables: Fix do_install task We need to run oe_runmake install with DESTDIR variable to install all arptables files. Without this the only file installed in package is systemd unit. Signed-off-by: Fabio Berton Signed-off-by: Armin Kuster Signed-off-by: Joe MacDonald (cherry picked from commit f122ecd7171b2258452131cc75d809b02a1f4f02) Signed-off-by: Armin Kuster --- meta-networking/recipes-support/arptables/arptables_git.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-networking/recipes-support/arptables/arptables_git.bb b/meta-networking/recipes-support/arptables/arptables_git.bb index 274a55d91d..cec1d1f77e 100644 --- a/meta-networking/recipes-support/arptables/arptables_git.bb +++ b/meta-networking/recipes-support/arptables/arptables_git.bb @@ -23,7 +23,8 @@ inherit systemd EXTRA_OEMAKE = "'BINDIR=${sbindir}' 'MANDIR=${mandir}'" -do_install_append() { +do_install() { + oe_runmake install DESTDIR=${D} if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then install -d ${D}${systemd_unitdir}/system install -m 644 ${WORKDIR}/arptables.service ${D}${systemd_unitdir}/system -- cgit 1.2.3-korg