From: Jan-Simon Moeller Date: Thu, 16 Feb 2023 11:37:24 +0000 (+0100) Subject: Fix dependency issue with grpc in meta-agl-core X-Git-Tag: 15.91.0~60 X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=AGL%2Fmeta-agl-demo.git;a=commitdiff_plain;h=caa767d4733da26875a628d8f438c57fbd7447ea Fix dependency issue with grpc in meta-agl-core grpc is not in the core layer but in meta-oe . Guard the dependency and only enable when prerequisites are met like in here. Bug-AGL: SPEC-4707 Change-Id: I9b28588562487681b227032967855f96dc0c9193 Signed-off-by: Jan-Simon Moeller --- diff --git a/recipes-graphics/wayland/agl-compositor_%.bbappend b/recipes-graphics/wayland/agl-compositor_%.bbappend new file mode 100644 index 000000000..504e18842 --- /dev/null +++ b/recipes-graphics/wayland/agl-compositor_%.bbappend @@ -0,0 +1 @@ +require ${@bb.utils.contains('AGL_FEATURES', 'agldemo', 'agl-compositor_agldemo.inc', '', d)} diff --git a/recipes-graphics/wayland/agl-compositor_agldemo.inc b/recipes-graphics/wayland/agl-compositor_agldemo.inc new file mode 100644 index 000000000..5ea1a2dc2 --- /dev/null +++ b/recipes-graphics/wayland/agl-compositor_agldemo.inc @@ -0,0 +1,2 @@ +# enable grpc-proxy +PACKAGECONFIG += "grpc-proxy"