Correct what was meant to be a LINUX compile flag.
(__UNIX__ picks up OSX as well.) Fixes https://gitlab.com/kicad/code/kicad/issues/7750
This commit is contained in:
parent
2bc10d58b5
commit
a088032411
|
@ -187,7 +187,7 @@ wxString PATHS::GetStockPlugins3DPath()
|
|||
{
|
||||
wxFileName fn;
|
||||
|
||||
#ifdef __UNIX__
|
||||
#ifdef __WXGTK__
|
||||
// KICAD_PLUGINDIR = CMAKE_INSTALL_FULL_LIBDIR path is the absolute path
|
||||
// corresponding to the install path used for constructing KICAD_USER_PLUGIN
|
||||
wxString tfname = wxString::FromUTF8Unchecked( KICAD_PLUGINDIR );
|
||||
|
|
Loading…
Reference in New Issue