1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-30 23:49:28 +02:00

Fix mac build

This commit is contained in:
Paul Licameli 2016-04-11 07:42:51 -04:00
parent 132591fd3e
commit 6b954dc0f4

View File

@ -1448,9 +1448,9 @@ void PluginManager::FindFilesInPathList(const wxString & pattern,
// Add the "Audacity" plug-ins directory
wxFileName ff = PlatformCompatibility::GetExecutablePath();
#if defined(__WXMAC__)
f.RemoveLastDir();
f.RemoveLastDir();
f.RemoveLastDir();
ff.RemoveLastDir();
ff.RemoveLastDir();
ff.RemoveLastDir();
#endif
ff.AppendDir(wxT("plug-ins"));
paths.Add(ff.GetPath());