diff mbox series

[meta-oe] protobuf: conditionally depend on ${PN}-compiler

Message ID 20241106154534.7025-1-ceggers@arri.de
State Under Review
Headers show
Series [meta-oe] protobuf: conditionally depend on ${PN}-compiler | expand

Commit Message

Christian Eggers Nov. 6, 2024, 3:45 p.m. UTC
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 <ceggers@arri.de>
---
 meta-oe/recipes-devtools/protobuf/protobuf_4.25.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

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 d5fd90137071..89e1071b59dc 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"