diff options
author | Markus Volk <f_l_k@t-online.de> | 2023-03-25 10:26:39 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-03-25 16:43:34 -0700 |
commit | 02f9c6a1a96d9f3281ab1b6efd0f9feed86b42dd (patch) | |
tree | a3a4f2c85515d12dbe46112b1017914ec89e86f9 | |
parent | 2b1ac94dd24373a3d30456a5c2e1ae20b0da7771 (diff) | |
download | meta-openembedded-02f9c6a1a96d9f3281ab1b6efd0f9feed86b42dd.tar.gz |
xdg-desktop-portal: fix bwrap path
bwrap path is read from STAGING_BINDIR_NATIVE. This commit fixes reproducibility and runtime
Signed-off-by: Markus Volk <f_l_k@t-online.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/xdg-desktop-portal/xdg-desktop-portal_1.16.0.bb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/meta-oe/recipes-support/xdg-desktop-portal/xdg-desktop-portal_1.16.0.bb b/meta-oe/recipes-support/xdg-desktop-portal/xdg-desktop-portal_1.16.0.bb index e16f9f372..0b3a93ab3 100644 --- a/meta-oe/recipes-support/xdg-desktop-portal/xdg-desktop-portal_1.16.0.bb +++ b/meta-oe/recipes-support/xdg-desktop-portal/xdg-desktop-portal_1.16.0.bb | |||
@@ -13,7 +13,6 @@ DEPENDS = " \ | |||
13 | pipewire \ | 13 | pipewire \ |
14 | dbus-native \ | 14 | dbus-native \ |
15 | fuse3 \ | 15 | fuse3 \ |
16 | bubblewrap-native \ | ||
17 | xmlto-native \ | 16 | xmlto-native \ |
18 | flatpak \ | 17 | flatpak \ |
19 | python3-dbus-native \ | 18 | python3-dbus-native \ |
@@ -37,3 +36,12 @@ S = "${WORKDIR}/git" | |||
37 | SRCREV = "88af6c8ca4106fcf70925355350a669848e9fd5a" | 36 | SRCREV = "88af6c8ca4106fcf70925355350a669848e9fd5a" |
38 | 37 | ||
39 | FILES:${PN} += "${libdir}/systemd ${datadir}/dbus-1" | 38 | FILES:${PN} += "${libdir}/systemd ${datadir}/dbus-1" |
39 | |||
40 | EXTRA_OEMESON += "--cross-file=${WORKDIR}/meson-${PN}.cross" | ||
41 | |||
42 | do_write_config:append() { | ||
43 | cat >${WORKDIR}/meson-${PN}.cross <<EOF | ||
44 | [binaries] | ||
45 | bwrap = '${bindir}/bwrap' | ||
46 | EOF | ||
47 | } | ||