Skip to content

Commit

Permalink
[WIN32] missed a non translated path (thanks elupus)
Browse files Browse the repository at this point in the history
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@35278 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
  • Loading branch information
wiso committed Nov 15, 2010
1 parent 295cc95 commit f619c63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbmc/cores/DllLoader/exports/emu_msvcrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ extern "C" void __stdcall init_emu_environ()
#endif
dll_putenv(string("PYTHONPATH=" + _P("special://xbmc/system/python/DLLs") + ";" + _P("special://xbmc/system/python/Lib")).c_str());
dll_putenv(string("PYTHONHOME=" + _P("special://xbmc/system/python")).c_str());
dll_putenv("PATH=.;special://xbmc;special://xbmc/system/python");
dll_putenv(string("PATH=.;" + _P("special://xbmc") + ";" + _P("special://xbmc/system/python")).c_str());
//dll_putenv("PYTHONCASEOK=1");
//dll_putenv("PYTHONDEBUG=1");
//dll_putenv("PYTHONVERBOSE=2"); // "1" for normal verbose, "2" for more verbose ?
Expand Down

0 comments on commit f619c63

Please sign in to comment.