Ignore ARDOUR_DATA_PATH env variable on windows

The variable is unset (and unused), windows_search_path()
is used on that platform.

This prevents the "ARDOUR_DATA_PATH not set in environment"
message from being printed.
This commit is contained in:
Robin Gareus 2021-03-26 17:14:55 +01:00
parent c51c254fae
commit e6496ab032
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -290,13 +290,14 @@ ardour_data_search_path ()
search_path += user_config_directory();
#ifdef PLATFORM_WINDOWS
search_path += windows_search_path ();
#endif
#else
std::string s = Glib::getenv("ARDOUR_DATA_PATH");
if (s.empty()) {
std::cerr << _("ARDOUR_DATA_PATH not set in environment\n");
} else {
search_path += Searchpath (s);
}
#endif
}
return search_path;