Fix T46377: No python executable in 2.76 rc3 distribution for OSX

This commit is contained in:
Sergey Sharybin 2015-10-05 15:43:56 +05:00
parent 3b2ad704f5
commit 413036b0d8
Notes: blender-bot 2023-11-20 12:14:32 +01:00
Referenced by issue #46377, No python executable in 2.76 rc3 distribution for OSX
2 changed files with 6 additions and 0 deletions

View File

@ -796,6 +796,8 @@ def AppIt(target=None, source=None, env=None):
commands.getoutput(cmd)
cmd = 'cp -R %s/release/site-packages/ %s/%s.app/Contents/Resources/%s/python/lib/python%s/site-packages/'%(libdir,installdir,binary,VERSION,env['BF_PYTHON_VERSION'])
commands.getoutput(cmd)
cmd = 'cp -r %s/python/bin -d %s/%s.app/Contents/Resources/%s/python/'%(libdir,installdir,binary,VERSION)
commands.getoutput(cmd)
cmd = 'chmod +x %s/%s.app/Contents/MacOS/%s'%(installdir,binary, binary)
commands.getoutput(cmd)

View File

@ -948,6 +948,10 @@ elseif(APPLE)
${CMAKE_CURRENT_BINARY_DIR}/python/lib/python${PYTHON_VERSION}/site-packages
)
install(DIRECTORY ${LIBDIR}/python/bin
DESTINATION ${TARGETDIR_VER}/python
USE_SOURCE_PERMISSIONS
)
endif()
# install blenderplayer bundle - copy of blender.app above. re-using macros et al