From b75483e597e904f6d1d0626a3c696757f48ce097 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 29 Nov 2022 18:48:03 +0200 Subject: [PATCH] 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: --- ci/generate-static-test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/generate-static-test.py b/ci/generate-static-test.py index 065beb5c..0f5bb6d3 100755 --- a/ci/generate-static-test.py +++ b/ci/generate-static-test.py @@ -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]