summaryrefslogtreecommitdiffstats
path: root/recipes-containers
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2023-08-14 13:21:38 +0200
committerBruce Ashfield <bruce.ashfield@gmail.com>2023-09-13 13:41:01 +0000
commit2d8b3cba8ff27c9ec2187a52b6a551fe1dcfaa07 (patch)
tree5836c8a5ccbbf5d20836288b23f2c4c7a01f3ba1 /recipes-containers
parent9b162d26ee86216b54c6163f5291788a5c4bb4a2 (diff)
downloadmeta-virtualization-2d8b3cba8ff27c9ec2187a52b6a551fe1dcfaa07.tar.gz
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 <Martin.Jansa@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'recipes-containers')
-rw-r--r--recipes-containers/nerdctl/nerdctl_git.bb4
1 files 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() {
239} 239}
240 240
241do_install() { 241do_install() {
242 install -d "${D}${BIN_PREFIX}/bin" 242 install -d "${D}${BIN_PREFIX}${base_bindir}"
243 install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}/bin" 243 install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}${base_bindir}"
244} 244}
245 245
246INHIBIT_PACKAGE_STRIP = "1" 246INHIBIT_PACKAGE_STRIP = "1"