From 2d8b3cba8ff27c9ec2187a52b6a551fe1dcfaa07 Mon Sep 17 00:00:00 2001 From: Martin Jansa Date: Mon, 14 Aug 2023 13:21:38 +0200 Subject: [PATCH] nerdctl: fix installed-vs-shipped with usrmerge * fixes: ERROR: nerdctl-v1.3.0-r0 do_package: QA Issue: nerdctl: Files/directories were installed but not shipped in any package: /bin /bin/nerdctl Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. nerdctl: 2 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Martin Jansa Signed-off-by: Bruce Ashfield --- recipes-containers/nerdctl/nerdctl_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-containers/nerdctl/nerdctl_git.bb b/recipes-containers/nerdctl/nerdctl_git.bb index 343c85dc..3d8140a2 100644 --- a/recipes-containers/nerdctl/nerdctl_git.bb +++ b/recipes-containers/nerdctl/nerdctl_git.bb @@ -239,8 +239,8 @@ do_compile() { } do_install() { - install -d "${D}${BIN_PREFIX}/bin" - install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}/bin" + install -d "${D}${BIN_PREFIX}${base_bindir}" + install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}${base_bindir}" } INHIBIT_PACKAGE_STRIP = "1"