diff options
author | Thibault Saunier <tsaunier@gnome.org> | 2014-10-22 18:50:20 +0200 |
---|---|---|
committer | Thibault Saunier <tsaunier@gnome.org> | 2014-10-26 16:05:08 +0100 |
commit | 4ddf633cca539e08aeb3c9d61d2ed358a33f602a (patch) | |
tree | 6934383248e06a58f05e79cbcebfa4cf0971d9cc | |
parent | e36cf3e441ecb564d8520bc1429bf6c68b5be778 (diff) |
recipes: Fix typelibs names
We ended up having a typelib called GstVideo-1.0GstAudio without that
coma.
-rw-r--r-- | recipes/gst-plugins-base-1.0.recipe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gst-plugins-base-1.0.recipe b/recipes/gst-plugins-base-1.0.recipe index 457cd34b..9996096a 100644 --- a/recipes/gst-plugins-base-1.0.recipe +++ b/recipes/gst-plugins-base-1.0.recipe @@ -111,7 +111,7 @@ class Recipe(recipe.Recipe): 'GstRtsp-1.0', 'GstSdp-1.0', 'GstTag-1.0', - 'GstVideo-1.0' + 'GstVideo-1.0', 'GstAudio-1.0' ] |