From b9054a1f723f6107f42a04ae9838820bbbd1f0ce Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 8 Feb 2014 11:16:17 -0500 Subject: fix missing colon in extension of LXVST search path --- libs/ardour/plugin_manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/plugin_manager.cc') diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index a10f27be1e..6034bba680 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -646,7 +646,7 @@ PluginManager::lxvst_refresh () } if (lxvst_path.length() == 0) { - lxvst_path = "/usr/local/lib64/lxvst:/usr/local/lib/lxvst:/usr/lib64/lxvst:/usr/lib/lxvst" + lxvst_path = "/usr/local/lib64/lxvst:/usr/local/lib/lxvst:/usr/lib64/lxvst:/usr/lib/lxvst:" "/usr/local/lib64/linux_vst:/usr/local/lib/linux_vst:/usr/lib64/linux_vst:/usr/lib/linux_vst"; } -- cgit v1.2.3 From 3566fa2d8ef069805c70e39101a129c35419ded7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 8 Feb 2014 11:17:50 -0500 Subject: add kxstudio linux vst dirs to LXVST default search path --- libs/ardour/plugin_manager.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'libs/ardour/plugin_manager.cc') diff --git a/libs/ardour/plugin_manager.cc b/libs/ardour/plugin_manager.cc index 6034bba680..df1b7fc441 100644 --- a/libs/ardour/plugin_manager.cc +++ b/libs/ardour/plugin_manager.cc @@ -647,7 +647,8 @@ PluginManager::lxvst_refresh () if (lxvst_path.length() == 0) { lxvst_path = "/usr/local/lib64/lxvst:/usr/local/lib/lxvst:/usr/lib64/lxvst:/usr/lib/lxvst:" - "/usr/local/lib64/linux_vst:/usr/local/lib/linux_vst:/usr/lib64/linux_vst:/usr/lib/linux_vst"; + "/usr/local/lib64/linux_vst:/usr/local/lib/linux_vst:/usr/lib64/linux_vst:/usr/lib/linux_vst:" + "/usr/lib/vst:/usr/local/lib/vst"; } lxvst_discover_from_path (lxvst_path); -- cgit v1.2.3