diff options
author | Ovidiu Panait <ovidiu.panait@windriver.com> | 2023-01-16 16:23:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-01-18 16:42:28 +0000 |
commit | aab9a3c6976bf4435c66cc738c3d70e0dfe6718e (patch) | |
tree | f7fd9278f54feb11f1afa6d71507153e1c1a04c4 /meta/recipes-sato | |
parent | 14a852c273c43dbf04d6502c5cbbe5768d165c5d (diff) | |
download | poky-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.bb | 2 |
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 | ||
25 | CVE_PRODUCT = "webkitgtk webkitgtk\+" | 25 | CVE_PRODUCT = "webkitgtk webkitgtk\+" |
26 | 26 | ||
27 | DEPENDS = " \ | 27 | DEPENDS += " \ |
28 | ruby-native \ | 28 | ruby-native \ |
29 | gperf-native \ | 29 | gperf-native \ |
30 | cairo \ | 30 | cairo \ |