diff options
author | Khem Raj <raj.khem@gmail.com> | 2022-04-30 06:31:48 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2022-04-30 06:33:43 -0700 |
commit | 42e6f16583e36857152ccb53b177e74f20b02667 (patch) | |
tree | cccc25f835c43c65e3039c37660ae1ae08632605 | |
parent | 77c2fda04e406c210fe2a1870c8473748302bfb5 (diff) | |
download | meta-openembedded-42e6f16583e36857152ccb53b177e74f20b02667.tar.gz |
ufw: Fix packaging errors found with ppc64
default baselib in ppc64 is lib64 which catches this latent issue
ERROR: ufw-0.36.1-r0 do_package: QA Issue: ufw: Files/directories were installed but not shipped in any package:
/usr/lib/ufw
/usr/lib/ufw/ufw-init
/usr/lib/ufw/ufw-init-functions
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-networking/recipes-connectivity/ufw/ufw_0.36.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-networking/recipes-connectivity/ufw/ufw_0.36.1.bb b/meta-networking/recipes-connectivity/ufw/ufw_0.36.1.bb index 6dca784bf..b6a768e08 100644 --- a/meta-networking/recipes-connectivity/ufw/ufw_0.36.1.bb +++ b/meta-networking/recipes-connectivity/ufw/ufw_0.36.1.bb | |||
@@ -63,7 +63,7 @@ INITSCRIPT_PARAMS = "defaults" | |||
63 | FILES:${PN} += " \ | 63 | FILES:${PN} += " \ |
64 | ${sbindir}/* \ | 64 | ${sbindir}/* \ |
65 | ${datadir}/ufw/* \ | 65 | ${datadir}/ufw/* \ |
66 | /lib/ufw/* \ | 66 | ${nonarch_base_libdir}/ufw/* \ |
67 | ${sysconfdir}/ufw/* \ | 67 | ${sysconfdir}/ufw/* \ |
68 | ${sysconfdir}/default/ufw \ | 68 | ${sysconfdir}/default/ufw \ |
69 | " | 69 | " |