fix for own missing var in recent commit.

This commit is contained in:
2009-07-03 11:46:46 +00:00
parent c12b2796d7
commit 3c6f957097
2 changed files with 3 additions and 1 deletions

View File

@@ -151,6 +151,7 @@ wchar_t* Py_GetPath(void)
/* must be called before Py_Initialize */
void BPY_start_python_path(void)
{
char py_path[FILE_MAXDIR + 11] = "";
char *py_path_bundle= BLI_gethome_folder("python");
if(py_path_bundle==NULL)
@@ -171,7 +172,7 @@ void BPY_start_python_path(void)
sprintf(py_path, "PYTHONPATH=%s", py_path_bundle)
putenv(py_path);
#else
setenv("PYTHONPATH", py_path_bundle, 1); /* initializing the video driver can cause crashes on some systems - Campbell */
setenv("PYTHONPATH", py_path_bundle, 1);
#endif
#endif