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-plugins-bad-1.0.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-plugins-bad-1.0.recipe')
-rw-r--r-- | recipes/gst-plugins-bad-1.0.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gst-plugins-bad-1.0.recipe b/recipes/gst-plugins-bad-1.0.recipe index 472fea1c..e86ec94c 100644 --- a/recipes/gst-plugins-bad-1.0.recipe +++ b/recipes/gst-plugins-bad-1.0.recipe @@ -1,7 +1,7 @@ # -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python -class Recipe(recipe.Recipe, custom.GStreamer): +class Recipe(custom.GStreamer): name = 'gst-plugins-bad-1.0' config_sh = 'sh ./autogen.sh --noconfigure && ./configure' configure_options = '--enable-static --disable-introspection --disable-gsm \ |