summaryrefslogtreecommitdiffstats
path: root/meta/recipes-sato
diff options
context:
space:
mode:
authorOvidiu Panait <ovidiu.panait@windriver.com>2023-01-16 16:23:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-01-18 16:42:28 +0000
commitaab9a3c6976bf4435c66cc738c3d70e0dfe6718e (patch)
treef7fd9278f54feb11f1afa6d71507153e1c1a04c4 /meta/recipes-sato
parent14a852c273c43dbf04d6502c5cbbe5768d165c5d (diff)
downloadpoky-aab9a3c6976bf4435c66cc738c3d70e0dfe6718e.tar.gz
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. (From OE-Core rev: a207c8f42f809340e0794cd326cb5c45e32d7d56) Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-sato')
-rw-r--r--meta/recipes-sato/webkit/webkitgtk_2.38.3.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.38.3.bb b/meta/recipes-sato/webkit/webkitgtk_2.38.3.bb
index e890079dc5..f076fb0498 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', '
24 24
25CVE_PRODUCT = "webkitgtk webkitgtk\+" 25CVE_PRODUCT = "webkitgtk webkitgtk\+"
26 26
27DEPENDS = " \ 27DEPENDS += " \
28 ruby-native \ 28 ruby-native \
29 gperf-native \ 29 gperf-native \
30 cairo \ 30 cairo \