From d76997b74c18df2ea86e11d30162cbc704ca6482 Mon Sep 17 00:00:00 2001 From: Christian Eggers Date: Wed, 6 Nov 2024 16:45:34 +0100 Subject: [PATCH] protobuf: conditionally depend on ${PN}-compiler If ${PN}-compiler is not build due to PACKAGECONFIG, we shouldn't depend on it. Otherwise installation on -dev package fails during populate_sdk. Signed-off-by: Christian Eggers Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/protobuf/protobuf_4.25.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-devtools/protobuf/protobuf_4.25.5.bb b/meta-oe/recipes-devtools/protobuf/protobuf_4.25.5.bb index d5fd901370..89e1071b59 100644 --- a/meta-oe/recipes-devtools/protobuf/protobuf_4.25.5.bb +++ b/meta-oe/recipes-devtools/protobuf/protobuf_4.25.5.bb @@ -109,7 +109,7 @@ SYSROOT_DIRS += "${bindir}" RDEPENDS:${PN} = "abseil-cpp" RDEPENDS:${PN}-lite = "abseil-cpp" RDEPENDS:${PN}-compiler = "${PN}" -RDEPENDS:${PN}-dev += "${PN}-compiler" +RDEPENDS:${PN}-dev += "${@bb.utils.contains('PACKAGECONFIG', 'compiler', '${PN}-compiler', '', d)}" RDEPENDS:${PN}-ptest = "bash ${@bb.utils.contains('PACKAGECONFIG', 'python', 'python3-protobuf', '', d)}" MIPS_INSTRUCTION_SET = "mips"