Make wxPython work under run from build directory on macOS
This commit is contained in:
parent
7cb98f6856
commit
004b96ec21
|
@ -289,6 +289,11 @@ bool SCRIPTING::scriptingSetup()
|
||||||
pyhome += Pgm().GetExecutablePath() +
|
pyhome += Pgm().GetExecutablePath() +
|
||||||
wxT( "Contents/Frameworks/Python.framework/Versions/Current" );
|
wxT( "Contents/Frameworks/Python.framework/Versions/Current" );
|
||||||
|
|
||||||
|
if( wxGetEnv( wxT( "KICAD_RUN_FROM_BUILD_DIR" ), nullptr ) )
|
||||||
|
{
|
||||||
|
pyhome = wxString( wxT( PYTHON_SITE_PACKAGE_PATH ) ) + wxT( "/../../../" );
|
||||||
|
}
|
||||||
|
|
||||||
// set $PYTHONHOME
|
// set $PYTHONHOME
|
||||||
wxSetEnv( wxT( "PYTHONHOME" ), pyhome );
|
wxSetEnv( wxT( "PYTHONHOME" ), pyhome );
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in New Issue