From 1bef5c6d5d9f95c831f5b8d9a92534b04884ad1a Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Wed, 2 Feb 2011 19:49:47 +0000 Subject: [PATCH] do not set LV2_PATH for a bundled build git-svn-id: svn://localhost/ardour2/branches/3.0@8681 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/main.cc | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc index c39a8f26df..7932978379 100644 --- a/gtk2_ardour/main.cc +++ b/gtk2_ardour/main.cc @@ -222,18 +222,6 @@ fixup_bundle_environment (int, char* []) setenv ("ARDOUR_PANNER_PATH", path.c_str(), 1); - cstr = getenv ("LV2_PATH"); - if (cstr) { - path = cstr; - path += ':'; - } else { - path = ""; - } - path += dir_path; - path += "/../Plugins"; - - setenv ("LV2_PATH", path.c_str(), 1); - path = dir_path; path += "/../Frameworks/clearlooks"; @@ -420,18 +408,6 @@ fixup_bundle_environment (int /*argc*/, char* argv[]) setenv ("ARDOUR_PANNER_PATH", path.c_str(), 1); - cstr = getenv ("LV2_PATH"); - if (cstr) { - path = cstr; - path += ':'; - } else { - path = ""; - } - path += dir_path; - path += "/lib/plugins"; - - setenv ("LV2_PATH", path.c_str(), 1); - path = dir_path; path += "/lib/clearlooks";