Fix an issue with commit #192a976cf9 by removing an unneeded environment variable (MSVC builds only)

For a normal Windows build it looks like ARDOUR_DLL_PATH got abandoned quite a long time ago (it's only needed these days by ardev)
This commit is contained in:
John Emmas 2026-01-24 09:52:10 +00:00
parent dd823c7b31
commit fa977bc54d

View file

@ -363,19 +363,7 @@ fixup_bundle_environment (int argc, char* argv[], string & localedir)
std::string path;
const char *cstr;
// First, set up 'ARDOUR_DLL_PATH'
path = dir_path;
path += "\\lib\\ardour3\\surfaces;";
path += dir_path;
path += "\\lib\\ardour3\\panners;";
path += dir_path;
path += "\\lib\\ardour3\\backends;";
path += dir_path;
path += "\\bin";
Glib::setenv ("ARDOUR_DLL_PATH", path, true);
// Next, set up 'ARDOUR_DATA_PATH'
// First, set up 'ARDOUR_DATA_PATH'
path = get_module_folder() + "\\";
path += PROGRAM_NAME;
path += PROGRAM_VERSION;