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/1008>
This commit is contained in:
Jordan Petridis 2022-11-29 18:48:03 +02:00 committed by Sebastian Dröge
parent 204e9af663
commit 922f14ea19

View file

@ -7,6 +7,7 @@ import os
from utils import iterate_plugins
# the csound version used on ci does not ship a .pc file
# threadshare we skip in meson static build as well
IGNORE = ['csound', 'threadshare']
outdir = sys.argv[1]