From c7813a4d63b6821b1b3e0a68b51d6fa4c78a4465 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 11 May 2023 12:45:49 +0200 Subject: [PATCH] Fix macOS build Signed-off-by: falkTX --- plugins/Common/IldaeilPlugin.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/Common/IldaeilPlugin.cpp b/plugins/Common/IldaeilPlugin.cpp index 2f81222..11ba3bc 100644 --- a/plugins/Common/IldaeilPlugin.cpp +++ b/plugins/Common/IldaeilPlugin.cpp @@ -62,9 +62,9 @@ static const char* getPathForLADSPA() if (path.isEmpty()) { #if defined(CARLA_OS_HAIKU) - path = getHomePath() + "/.ladspa:/system/add-ons/media/ladspaplugins:/system/lib/ladspa"; + path = getHomePath() + "/.ladspa:/system/add-ons/media/ladspaplugins:/system/lib/ladspa"; #elif defined(CARLA_OS_MAC) - ladspa = getHomePath() + "/Library/Audio/Plug-Ins/LADSPA:/Library/Audio/Plug-Ins/LADSPA"; + path = getHomePath() + "/Library/Audio/Plug-Ins/LADSPA:/Library/Audio/Plug-Ins/LADSPA"; #elif defined(CARLA_OS_WASM) path = "/ladspa"; #elif defined(CARLA_OS_WIN) @@ -344,6 +344,7 @@ public: #endif } + carla_stdout("Using binary path: %s", fDiscoveryTool.buffer()); fDiscoveryTool += DISTRHO_OS_SEP_STR "carla-discovery-native" EXT; #undef EXT