summaryrefslogtreecommitdiffstats
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-08-15 18:48:28 +0000
commit81bd76bd1880ad589c41cd90726921dd52989a92 (patch)
treef1e4937edf13a50838407f7352dadfee3fe0224a
parent884c0bbbc07c64dec219adef94010dc7ba18fd9a (diff)
downloadmeta-virtualization-81bd76bd1880ad589c41cd90726921dd52989a92.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>
-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 ca4d3c62..62460a52 100644
--- a/recipes-containers/nerdctl/nerdctl_git.bb
+++ b/recipes-containers/nerdctl/nerdctl_git.bb
@@ -75,8 +75,8 @@ do_compile() {
75} 75}
76 76
77do_install() { 77do_install() {
78 install -d "${D}${BIN_PREFIX}/bin" 78 install -d "${D}${BIN_PREFIX}${base_bindir}"
79 install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}/bin" 79 install -m 755 "${S}/src/import/_output/nerdctl" "${D}${BIN_PREFIX}${base_bindir}"
80} 80}
81 81
82INHIBIT_PACKAGE_STRIP = "1" 82INHIBIT_PACKAGE_STRIP = "1"