diff options
author | Zbigniew Bodek <zbigniew.bodek@huawei.com> | 2021-02-20 02:19:54 +0900 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-03-10 00:24:25 +0000 |
commit | 37448a225108e7aa01188345043f57f88571f269 (patch) | |
tree | 24f91098d2bd6ff6d623e4f26485777abf96a648 /meta | |
parent | 3be4d4e2c3905f16a2cd7201fe378524a26bca00 (diff) | |
download | poky-37448a225108e7aa01188345043f57f88571f269.tar.gz |
wpebackend-fdo: Fix missing .so symlink when using dev package
Problem spotted on dunfell-23.0.4
Normally, unversioned .so is removed from -dev (default) package
however it is still being referred by other agents, such as webkitgtk.
That can be observed while executing i.e. Epiphany Browser.
For instance:
platformInitializeWebProcess()
calls
wpe_loader_init("libWPEBackend-fdo-1.0.so")
as a result one can see:
--------------------
wpe_loader_init could not load the library 'libWPEBackend-fdo-1.0.so':
libWPEBackend-fdo-1.0.so: cannot open shared object file:
No such file or directory
--------------------
"master" branch contains a bumped-up version of webkitgtk
to which this issue does not apply (the code has changed).
Forcefully keep this .so symlink to resolve the problem in dunfell.
(From OE-Core rev: a620b9b885bcff5b29e33d6cb0273e147fa19752)
Signed-off-by: Zbigniew Bodek <zbigniew.bodek@huawei.com>
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb b/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb index 519762d125..15f4f4276c 100644 --- a/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb +++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.7.1.bb | |||
@@ -15,3 +15,6 @@ REQUIRED_DISTRO_FEATURES = "opengl" | |||
15 | SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz" | 15 | SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz" |
16 | SRC_URI[sha256sum] = "9b980a73ea4e3762266c48f81ded56d9dcad4acf32bad9bd05d0dffdd454c6f5" | 16 | SRC_URI[sha256sum] = "9b980a73ea4e3762266c48f81ded56d9dcad4acf32bad9bd05d0dffdd454c6f5" |
17 | 17 | ||
18 | FILES_${PN} += "${libdir}/libWPEBackend-fdo-1.0.so" | ||
19 | FILES_SOLIBSDEV = "" | ||
20 | INSANE_SKIP_${PN} += "dev-so" | ||