summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorL. E. Segovia <amy@centricular.com>2023-11-21 20:15:04 -0300
committerL. E. Segovia <amy@centricular.com>2023-12-03 11:47:37 -0300
commit789c340786b65ef50dcd9dfcc57aa3fab158ff0e (patch)
tree894ccabfa912944b2e48eadd4a14d29a8726240b
parent5a227a026b3c5660c7142108214333633119b359 (diff)
gst-plugins-rs: Enable superstripping on Linux too
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1255>
-rw-r--r--recipes/gst-plugins-rs.recipe2
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/gst-plugins-rs.recipe b/recipes/gst-plugins-rs.recipe
index 4792a6c5..f2ffe497 100644
--- a/recipes/gst-plugins-rs.recipe
+++ b/recipes/gst-plugins-rs.recipe
@@ -165,7 +165,7 @@ class Recipe(recipe.Recipe):
libraries = [f for f in self.devel_files_list()
if f.endswith('.a')]
for f in libraries:
- if self.config.target_platform == Platform.ANDROID:
+ if self.config.target_platform in (Platform.ANDROID, Platform.LINUX):
shell.new_call([self.env['STRIP'], '--wildcard', '--strip-all',
'--keep-symbol=gst_plugin_*', f], self.config.prefix, env=self.env)
elif self.config.target_platform == Platform.IOS: