From ea46c6e2958a9f1e12a01e593fb03c10aab8a516 Mon Sep 17 00:00:00 2001 From: Konrad Weihmann Date: Wed, 13 Nov 2024 07:48:18 +0000 Subject: [PATCH] layer.conf: add LAYERDEPENDS depend on core first of all. In addtion add a depends on openembedded-layer as wpewebkit configures a dependency on libbacktrace which is located in meta-oe aka openembedded-layer Fixes errors like Missing or unbuildable dependency chain was: ['meta-world-pkgdata', 'cog', 'wpewebkit', 'libbacktrace'] Signed-off-by: Konrad Weihmann --- conf/layer.conf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/conf/layer.conf b/conf/layer.conf index 7a358073..24bb2133 100644 --- a/conf/layer.conf +++ b/conf/layer.conf @@ -13,6 +13,11 @@ BBFILE_COLLECTIONS += "webkit" BBFILE_PATTERN_webkit := "^${LAYERDIR}/" BBFILE_PRIORITY_webkit = "7" +LAYERDEPENDS_webkit = "\ + core \ + openembedded-layer \ +" + # do not error out on bbappends for missing recipes BB_DANGLINGAPPENDS_WARNONLY = "true"