diff options
author | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-09-15 09:14:11 -0400 |
---|---|---|
committer | Nicolas Dufresne <nicolas.dufresne@collabora.com> | 2016-09-15 09:16:19 -0400 |
commit | 56d2607974b872a76a01f1c7752f96767fd1c44d (patch) | |
tree | db40970be0a31c309d0c402a1b48c974e05930c4 /recipes/gst-validate.recipe | |
parent | cfa07b68ca4e109bc1bddf6d30c6cbc6eb9807b3 (diff) |
recipes: Workaround cerbero looking into first base class
To obtain the btype, cerbero seems to introspect the first base class,
with the introduction of multiple inheritance, this cause some
information not to be found. To workaround, we simply flatten the
hierarchy, so the recipe looks like having a single base class.
Diffstat (limited to 'recipes/gst-validate.recipe')
-rw-r--r-- | recipes/gst-validate.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gst-validate.recipe b/recipes/gst-validate.recipe index b11c4656..f54f07f4 100644 --- a/recipes/gst-validate.recipe +++ b/recipes/gst-validate.recipe @@ -1,7 +1,7 @@ # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python from cerbero.utils import shell -class Recipe(recipe.Recipe, custom.GStreamer): +class Recipe(custom.GStreamer): name = 'gst-validate' remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gst-devtools'} srcdir = 'validate' |