diff options
author | Xavi Artigas <xartigas@fluendo.com> | 2013-01-21 18:07:18 +0100 |
---|---|---|
committer | Xavi Artigas <xartigas@fluendo.com> | 2013-01-21 18:07:18 +0100 |
commit | a38374f533b5b69750a2150a57cce8759c3e45b4 (patch) | |
tree | 4fed2ab0627eaa4b929951a9c5eec24328fc691c /recipes | |
parent | 2952050768b8fa59f9c7a7e20d8f63aad8541721 (diff) |
Fix typo in configure switch regarding introspection.
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gstreamer-1.0.recipe | 2 | ||||
-rw-r--r-- | recipes/gstreamer-sharp.recipe | 2 | ||||
-rw-r--r-- | recipes/gstreamer.recipe | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/recipes/gstreamer-1.0.recipe b/recipes/gstreamer-1.0.recipe index 2d49750..093cfa4 100644 --- a/recipes/gstreamer-1.0.recipe +++ b/recipes/gstreamer-1.0.recipe @@ -6,7 +6,7 @@ class Recipe(recipe.Recipe): version = '0.11.x' licenses = [License.LGPLv2_1Plus] config_sh = 'sh ./autogen.sh --noconfigure && ./configure' - configure_options = "--disable-instrospection --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer (GStreamer SDK) '" + configure_options = "--disable-introspection --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer (GStreamer SDK) '" remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gstreamer'} commit = 'upstream/1.0' deps = ['glib', 'libxml2', 'gtk-doc-lite'] diff --git a/recipes/gstreamer-sharp.recipe b/recipes/gstreamer-sharp.recipe index 05a5bf9..f74ddeb 100644 --- a/recipes/gstreamer-sharp.recipe +++ b/recipes/gstreamer-sharp.recipe @@ -5,7 +5,7 @@ class Recipe(recipe.Recipe): name = 'gstreamer-sharp' version = '0.9.1-git' licenses = [License.LGPLv2_1Plus] - configure_options = "--disable-instrospection --disable-examples "\ + configure_options = "--disable-introspection --disable-examples "\ " --with-package-origin='http://www.gstreamer.com' "\ " --with-package-name='GStreamer C# Bindings (GStreamer SDK)'" remotes = {'upstream': diff --git a/recipes/gstreamer.recipe b/recipes/gstreamer.recipe index b1ff7e5..53b0334 100644 --- a/recipes/gstreamer.recipe +++ b/recipes/gstreamer.recipe @@ -6,7 +6,7 @@ class Recipe(recipe.Recipe): version = '0.10.36' licenses = [License.LGPLv2_1Plus] config_sh = 'sh ./autogen.sh --noconfigure && ./configure' - configure_options = "--disable-instrospection --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer (GStreamer SDK) '" + configure_options = "--disable-introspection --disable-examples --with-package-origin='http://www.gstreamer.com' --with-package-name='GStreamer (GStreamer SDK) '" remotes = {'upstream': 'git://anongit.freedesktop.org/gstreamer/gstreamer'} deps = ['glib', 'libxml2', 'gtk-doc-lite'] |