From c770e561d3bfca283525909ee8b04edb523fc5b4 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Thu, 24 Jun 2021 16:09:56 +0200 Subject: [PATCH] [yabridgectl] Use the correct VST3 arch name --- tools/yabridgectl/src/files.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/yabridgectl/src/files.rs b/tools/yabridgectl/src/files.rs index 5ba5d16e..3151332b 100644 --- a/tools/yabridgectl/src/files.rs +++ b/tools/yabridgectl/src/files.rs @@ -208,7 +208,7 @@ impl Vst3Module { #[allow(clippy::wildcard_in_or_patterns)] match config.and_then(|c| c.libyabridge_vst3.as_ref()) { - Some((_, LibArchitecture::Lib32)) => path.push("x86-linux"), + Some((_, LibArchitecture::Lib32)) => path.push("i386-linux"), // NOTE: We'll always fall back to this if `libyabridge-vst3.so` is not found, just so // we cannot get any errors during `yabridgectl status` even if yabridge is not // set up correctly.