summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2019-03-22 10:51:08 +0000
committerTim-Philipp Müller <tim@centricular.com>2019-03-22 14:06:14 +0000
commit55eb4b9c0011dd9139a1f2ba5db231fdb73bbc97 (patch)
tree868a4d96ac4809df61ccfe1ed4cf79514f9ee058
parentb9e20664b697b2afaa3dd3b68492bb46ff60fbd0 (diff)
recipes: gst-validate: disable debug-viewer
We don't need it, and it causes errors on install due to lack of permissions because the new meson python module returns an absolute path into the python install prefix for import('python').find_installation().get_path('purelib') where the old deprecated python3 module returned a path without a prefix. This is apparently on purpose, so nothing for us to fix here.
-rw-r--r--recipes/gst-validate.recipe1
1 files changed, 1 insertions, 0 deletions
diff --git a/recipes/gst-validate.recipe b/recipes/gst-validate.recipe
index 55156ae0..f13cf436 100644
--- a/recipes/gst-validate.recipe
+++ b/recipes/gst-validate.recipe
@@ -5,6 +5,7 @@ from cerbero.tools.libtool import LibtoolLibrary
class Recipe(custom.GStreamer):
name = 'gst-validate'
btype = BuildType.MESON
+ meson_options = {'debug_viewer': 'false'}
# gst-validate tarball has a different layout than the git repo, just always build from git
stype = SourceType.GIT
remotes = {'origin': 'https://gitlab.freedesktop.org/gstreamer/gst-devtools.git'}