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
This commit is contained in:
Paul Davis 2012-06-25 21:44:07 +00:00
parent 3b986aa392
commit 8ca5537ccb

View file

@ -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);
}