summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2024-01-15 18:00:30 +0100
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-01-19 14:43:37 +0000
commita0ad18ea2832446f8a827a8a0ffe38c1f23ccb38 (patch)
tree798be9e6f7de130fa83a0cfa3b2d4c9f8269d81c
parent5bd48ee74f0792029f51d5c2d59c92265216d48e (diff)
downloadmeta-virtualization-a0ad18ea2832446f8a827a8a0ffe38c1f23ccb38.tar.gz
containerd-opencontainers: Use RDEPENDS:${PN} instead of RDEPENDS:${BPN}
The original purpose of using BPN vs PN in the RDEPENDS was due to 32bit multilib issues. Those problems are no longer present, so we can adjust this recipe to use the standard PN in rdepends. This change avoids the following warning: WARNING: .../containerd-opencontainers_git.bb: Variable key RDEPENDS:${PN} (...) replaces original key RDEPENDS:containerd-opencontainers ( ${VIRTUAL-RUNTIME_container_runtime}). if, e.g., RDEPENDS:${PN}:append = " ..." is used in a bbappend or bbclass. Signed-off-by: Peter Kjellerstedt <peter.kjellerstedt@axis.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-containers/containerd/containerd-opencontainers_git.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-containers/containerd/containerd-opencontainers_git.bb b/recipes-containers/containerd/containerd-opencontainers_git.bb
index 5c1e1274..1dadf287 100644
--- a/recipes-containers/containerd/containerd-opencontainers_git.bb
+++ b/recipes-containers/containerd/containerd-opencontainers_git.bb
@@ -95,6 +95,6 @@ INSANE_SKIP:${PN} += "ldflags already-stripped"
95 95
96COMPATIBLE_HOST = "^(?!(qemu)?mips).*" 96COMPATIBLE_HOST = "^(?!(qemu)?mips).*"
97 97
98RDEPENDS:${BPN} += " ${VIRTUAL-RUNTIME_container_runtime}" 98RDEPENDS:${PN} += " ${VIRTUAL-RUNTIME_container_runtime}"
99 99
100CVE_PRODUCT = "containerd" 100CVE_PRODUCT = "containerd"