Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorJordan Petridis <jordan@centricular.com>2022-11-29 19:48:03 +0300
committerJordan Petridis <jordan@centricular.com>2022-11-29 21:03:29 +0300
commit12c058bc49026fde12458d99ed31acff63979cc6 (patch)
treec6b95e448d549717d4205600fd19ca2f78cc5a2c /ci
parent76eeaffbb2c35453dd86f4d36a5bc0aedbc54dad (diff)
meson: Fix build of static plugins
While we were correctly skipping the plugins that couldn't be built statically, we were still adding their names to the list and the .pc list causing them to still get built. Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/994>
Diffstat (limited to 'ci')
-rwxr-xr-xci/generate-static-test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/generate-static-test.py b/ci/generate-static-test.py
index b4c75d8ed..065beb5c5 100755
--- a/ci/generate-static-test.py
+++ b/ci/generate-static-test.py
@@ -7,7 +7,7 @@ import os
from utils import iterate_plugins
# the csound version used on ci does not ship a .pc file
-IGNORE = ['csound']
+IGNORE = ['csound', 'threadshare']
outdir = sys.argv[1]