diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2024-02-08 07:52:51 +0530 |
---|---|---|
committer | GStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org> | 2024-02-09 06:05:15 +0000 |
commit | b7864dee4cdfb78bcfa0db4146d15236fb02b73c (patch) | |
tree | 29c1d0a160d76e2e677d3187c71369a2c251dc5d /recipes | |
parent | dd463d50cbd9778a13abc26437753557e60c13f8 (diff) |
cerbero: packages are a cargo feature, not cargo-c
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1349>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/gst-plugins-rs.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gst-plugins-rs.recipe b/recipes/gst-plugins-rs.recipe index b8264e0c..37da7410 100644 --- a/recipes/gst-plugins-rs.recipe +++ b/recipes/gst-plugins-rs.recipe @@ -26,7 +26,7 @@ class Recipe(recipe.Recipe): }] btype = BuildType.CARGO_C - cargoc_packages = [ + cargo_packages = [ 'audiofx', 'aws', 'cdg', @@ -115,7 +115,7 @@ class Recipe(recipe.Recipe): for name in names: self.enable_plugin(name, category) - self.cargoc_packages = [f'gst-plugin-{pkg}' for pkg in self.cargoc_packages] + self.cargo_packages = [f'gst-plugin-{pkg}' for pkg in self.cargo_packages] # Build with Cerbero's latest glib version as minimum version self.cargo_features += ['glib/v2_74', 'gio/v2_74'] # Enable assembly optimizations via nasm |