summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Kjellerstedt <peter.kjellerstedt@axis.com>2024-01-30 22:07:38 +0100
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-02-01 14:17:20 +0000
commitac125d881f34ff356390e19e02964f8980d4ec38 (patch)
tree4d15734a9b455652510cbb4d80268813739bbbc7
parent9e92984ff47b3ca2106b1d27a93af061b28d1e8a (diff)
downloadmeta-virtualization-nanbield.tar.gz
containerd-opencontainers: Use RDEPENDS:${PN} instead of RDEPENDS:${BPN}nanbield
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 78fe6941..d3658204 100644
--- a/recipes-containers/containerd/containerd-opencontainers_git.bb
+++ b/recipes-containers/containerd/containerd-opencontainers_git.bb
@@ -98,6 +98,6 @@ INSANE_SKIP:${PN} += "ldflags already-stripped"
98 98
99COMPATIBLE_HOST = "^(?!(qemu)?mips).*" 99COMPATIBLE_HOST = "^(?!(qemu)?mips).*"
100 100
101RDEPENDS:${BPN} += " ${VIRTUAL-RUNTIME_container_runtime}" 101RDEPENDS:${PN} += " ${VIRTUAL-RUNTIME_container_runtime}"
102 102
103CVE_PRODUCT = "containerd" 103CVE_PRODUCT = "containerd"