[MacOSX] Reorganize OSX Library PATH, first the USER's one then the SYSTEM's one

This commit is contained in:
Marco Serantoni 2013-12-31 15:28:34 +01:00
parent 4d139b590f
commit 54fe3eeeee
1 changed files with 1 additions and 1 deletions

View File

@ -505,8 +505,8 @@ void EDA_APP::SetDefaultSearchPaths()
#ifdef __WXMSW__
tmp.AddEnvList( wxT( "PROGRAMFILES" ) );
#elif __WXMAC__
tmp.Add( wxT( "/Library/Application Support" ) );
tmp.Add( wxString( wxGetenv( wxT( "HOME" ) ) ) + wxT( "/Library/Application Support" ) );
tmp.Add( wxT( "/Library/Application Support" ) );
#else
tmp.AddEnvList( wxT( "PATH" ) );
#endif