diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-25 15:00:57 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-02-26 15:21:21 +0000 |
commit | c0b95cdc91a872212f927b2bc1dc1ed8a207bbd9 (patch) | |
tree | 6bd61253fce28e2e9c64c9d78cd436993e9afb4b | |
parent | 38f513bfc74a87e0425c0ec7d8f5b3bd20233250 (diff) | |
download | poky-c0b95cdc91a872212f927b2bc1dc1ed8a207bbd9.tar.gz |
gst-devtools: Fix reproducibility issue
(From OE-Core rev: d221abc411b49b219b89cb38a56b2901d0bd5529)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/lib/oeqa/selftest/cases/reproducible.py | 1 | ||||
-rw-r--r-- | meta/recipes-multimedia/gstreamer/gst-devtools_1.18.3.bb | 7 |
2 files changed, 7 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index 8af38151dd..2d65b1d5e6 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py | |||
@@ -36,7 +36,6 @@ exclude_packages = [ | |||
36 | 'go-runtime', | 36 | 'go-runtime', |
37 | 'go_', | 37 | 'go_', |
38 | 'go-', | 38 | 'go-', |
39 | 'gst-devtools', | ||
40 | 'gstreamer1.0-python', | 39 | 'gstreamer1.0-python', |
41 | 'igt-gpu-tools', | 40 | 'igt-gpu-tools', |
42 | 'libaprutil', | 41 | 'libaprutil', |
diff --git a/meta/recipes-multimedia/gstreamer/gst-devtools_1.18.3.bb b/meta/recipes-multimedia/gstreamer/gst-devtools_1.18.3.bb index 21a31b41f5..bad9921757 100644 --- a/meta/recipes-multimedia/gstreamer/gst-devtools_1.18.3.bb +++ b/meta/recipes-multimedia/gstreamer/gst-devtools_1.18.3.bb | |||
@@ -38,5 +38,12 @@ EXTRA_OEMESON += " \ | |||
38 | ${@gettext_oemeson(d)} \ | 38 | ${@gettext_oemeson(d)} \ |
39 | " | 39 | " |
40 | 40 | ||
41 | do_install_append () { | ||
42 | for fn in ${bindir}/gst-validate-launcher \ | ||
43 | ${libdir}/gst-validate-launcher/python/launcher/config.py; do | ||
44 | sed -i -e 's,${B},/usr/src/debug/${PN},g' -e 's,${S},/usr/src/debug/${PN},g' ${D}$fn | ||
45 | done | ||
46 | } | ||
47 | |||
41 | GIR_MESON_ENABLE_FLAG = "enabled" | 48 | GIR_MESON_ENABLE_FLAG = "enabled" |
42 | GIR_MESON_DISABLE_FLAG = "disabled" | 49 | GIR_MESON_DISABLE_FLAG = "disabled" |