From: Scott Murray Date: Sun, 20 Nov 2022 23:21:19 +0000 (-0500) Subject: Add meta-clang as a dependency X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?p=AGL%2Fmeta-agl-demo.git;a=commitdiff_plain;h=175c760662f98551e83fb60a427baeff1c3f52af Add meta-clang as a dependency Define AGL_META_CLANG in the agl-demo template to pull in meta-clang, as it seems required to avoid dependency errors from the uutils-coreutils recipe in meta-oe when selinux is present in DISTRO_FEATURES. It may be worthwhile investigating further and discussing with upstream, as this seems a bit unusual. Bug-AGL: SPEC-4578 Change-Id: Ib8ac8d02b86491bded5463670c87d12a8e66df6a Signed-off-by: Scott Murray --- diff --git a/templates/feature/agl-demo/50_bblayers.conf.inc b/templates/feature/agl-demo/50_bblayers.conf.inc index 37b44ec46..384a3b3f8 100644 --- a/templates/feature/agl-demo/50_bblayers.conf.inc +++ b/templates/feature/agl-demo/50_bblayers.conf.inc @@ -9,3 +9,6 @@ AGL_META_MULTIMEDIA = "${METADIR}/external/meta-openembedded/meta-multimedia" AGL_META_NETWORKING = "${METADIR}/external/meta-openembedded/meta-networking" AGL_META_PYTHON = "${METADIR}/external/meta-openembedded/meta-python" AGL_META_QT5 = "${METADIR}/external/meta-qt5" + +# Needed to satisfy uutils-coreutils DEPENDS when using SELinux +AGL_META_CLANG = "${METADIR}/external/meta-clang"