modify error when python is not found so as not to confuse users who don't build blender.

+ minor edits.
This commit is contained in:
2011-03-30 07:21:41 +00:00
parent 206e5b7179
commit bfadd7c9aa
3 changed files with 3 additions and 3 deletions

View File

@@ -173,7 +173,7 @@ static void bpy_python_start_path(void)
if(py_path_bundle==NULL) {
/* Common enough to have bundled *nix python but complain on OSX/Win */
#if defined(__APPLE__) || defined(_WIN32)
fprintf(stderr, "Bundled python is expected on this platform, if blender fails to load build the 'install' target\n");
fprintf(stderr, "Warning! bundled python not found and is expected on this platform. (if you built with CMake: 'install' target may have not been built)\n");
#endif
return;
}