From 9f0eebd8294713ac3b4571a0a635ecad85d9db7f Mon Sep 17 00:00:00 2001 From: Amarnath Valluri Date: Thu, 23 Feb 2017 11:05:37 +0200 Subject: ebtables: Move files only when src != dst. While moving files from ${base_sbindir} to ${sbindir} check if both are same. Signed-off-by: Amarnath Valluri Signed-off-by: Martin Jansa Signed-off-by: Joe MacDonald --- meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb') diff --git a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb index d24b81bc19..f5e28714eb 100644 --- a/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb +++ b/meta-networking/recipes-filter/ebtables/ebtables_2.0.10-4.bb @@ -70,8 +70,10 @@ do_install () { # The script ebtables-save refernces perl in exec_prefix, so # move it to sbindir to avoid QA issue - install -d ${D}/${sbindir} - mv ${D}/${base_sbindir}/ebtables-save ${D}/${sbindir} + if ${base_sbindir} != ${sbindir} ; then + install -d ${D}/${sbindir} + mv ${D}/${base_sbindir}/ebtables-save ${D}/${sbindir} + fi # Install systemd service files install -d ${D}${systemd_unitdir}/system -- cgit 1.2.3-korg