From: Ovidiu Panait Date: Mon, 16 Jan 2023 14:23:18 +0000 (+0200) Subject: webkitgtk: fix perl-native dependency X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~1928 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a207c8f42f809340e0794cd326cb5c45e32d7d56;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git webkitgtk: fix perl-native dependency Currently, perl-native is missing from DEPENDS for webkitgtk even though perlnative bbclass is inherited. This happens because the DEPENDS variable is reassigned right after perlnative class is inherited: inherit perlnative (DEPENDS += "perl-native") ... DEPENDS = " \ ..." Adjust the DEPENDS line to use += in order to fix this. Signed-off-by: Ovidiu Panait Signed-off-by: Luca Ceresoli Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-sato/webkit/webkitgtk_2.38.3.bb b/meta/recipes-sato/webkit/webkitgtk_2.38.3.bb index e890079dc54..f076fb0498e 100644 --- a/meta/recipes-sato/webkit/webkitgtk_2.38.3.bb +++ b/meta/recipes-sato/webkit/webkitgtk_2.38.3.bb @@ -24,7 +24,7 @@ REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', ' CVE_PRODUCT = "webkitgtk webkitgtk\+" -DEPENDS = " \ +DEPENDS += " \ ruby-native \ gperf-native \ cairo \