From a0ad18ea2832446f8a827a8a0ffe38c1f23ccb38 Mon Sep 17 00:00:00 2001 From: Peter Kjellerstedt Date: Mon, 15 Jan 2024 18:00:30 +0100 Subject: 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 Signed-off-by: Bruce Ashfield --- recipes-containers/containerd/containerd-opencontainers_git.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" COMPATIBLE_HOST = "^(?!(qemu)?mips).*" -RDEPENDS:${BPN} += " ${VIRTUAL-RUNTIME_container_runtime}" +RDEPENDS:${PN} += " ${VIRTUAL-RUNTIME_container_runtime}" CVE_PRODUCT = "containerd" -- cgit v1.2.3-54-g00ecf