From 8ca5537ccb0530a7da0817f1fb4fb5127be2e5e2 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 25 Jun 2012 21:44:07 +0000 Subject: [PATCH] change "library" folder name in bundle from Frameworks to lib to deal with OS X linker issues git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12931 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/main.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc index 4aba2bbbdc..7e50f9d284 100644 --- a/gtk2_ardour/main.cc +++ b/gtk2_ardour/main.cc @@ -161,7 +161,7 @@ fixup_bundle_environment (int argc, char* argv[]) path = ""; } path += dir_path; - path += "/../Frameworks"; + path += "/../lib"; setenv ("VAMP_PATH", path.c_str(), 1); @@ -182,7 +182,7 @@ fixup_bundle_environment (int argc, char* argv[]) setenv ("ARDOUR_CONTROL_SURFACE_PATH", path.c_str(), 1); path = dir_path; - path += "/../Frameworks/clearlooks"; + path += "/../lib/clearlooks"; setenv ("GTK_PATH", path.c_str(), 1); @@ -254,7 +254,7 @@ fixup_bundle_environment (int argc, char* argv[]) // JACK driver dir path = dir_path; - path += "/../Frameworks"; + path += "/../lib"; setenv ("JACK_DRIVER_DIR", path.c_str(), 1); }