summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorZbigniew Bodek <zbigniew.bodek@huawei.com>2021-02-20 02:19:54 +0900
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-04 17:39:10 +0000
commit42385075ebb1567656693ba9e4a1d52c0be2c6e9 (patch)
tree7af241ca735d66ea0c84e0923198330712310567 /meta
parent2694047beb4f04d547c3418d0d587b3a66646121 (diff)
downloadpoky-42385075ebb1567656693ba9e4a1d52c0be2c6e9.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: 341e18ff05bb6758e3e153ed8c27723a6f51621d) Signed-off-by: Zbigniew Bodek <zbigniew.bodek@huawei.com> Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r--meta/recipes-sato/webkit/wpebackend-fdo_1.4.1.bb3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/wpebackend-fdo_1.4.1.bb b/meta/recipes-sato/webkit/wpebackend-fdo_1.4.1.bb
index cd2f7fabda..165fc74dde 100644
--- a/meta/recipes-sato/webkit/wpebackend-fdo_1.4.1.bb
+++ b/meta/recipes-sato/webkit/wpebackend-fdo_1.4.1.bb
@@ -15,3 +15,6 @@ REQUIRED_DISTRO_FEATURES = "opengl"
15SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz" 15SRC_URI = "https://wpewebkit.org/releases/${BPN}-${PV}.tar.xz"
16SRC_URI[sha256sum] = "6249a0b7cbfa662206a8d2fa24e2c574e75c681ad0e93468091f1dc68ddb299d" 16SRC_URI[sha256sum] = "6249a0b7cbfa662206a8d2fa24e2c574e75c681ad0e93468091f1dc68ddb299d"
17 17
18FILES_${PN} += "${libdir}/libWPEBackend-fdo-1.0.so"
19FILES_SOLIBSDEV = ""
20INSANE_SKIP_${PN} += "dev-so"