mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-02 01:44:06 -04:00
deploy-ng: Add libpython to list of libs to copy
This commit is contained in:
parent
3347a6e2cb
commit
83c6f033e1
@ -41,7 +41,14 @@ def find_packages(whlfile):
|
||||
else:
|
||||
filelist = whlfile.namelist()
|
||||
|
||||
return [i for i in filelist if '.so.' in i or i.endswith('.dll') or i.endswith('.dylib') or 'libpandagl' in i]
|
||||
return [
|
||||
i for i in filelist
|
||||
if '.so.' in i or
|
||||
i.endswith('.dll') or
|
||||
i.endswith('.dylib') or
|
||||
'libpandagl' in i or
|
||||
'libpython' in i
|
||||
]
|
||||
|
||||
|
||||
class build(distutils.command.build.build):
|
||||
|
Loading…
x
Reference in New Issue
Block a user