8000 Fixed site-packages copy during crystax install · ttarfall/python-for-android@41f5cf0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 41f5cf0

Browse files
committed
Fixed site-packages copy during crystax install
1 parent 59a5916 commit 41f5cf0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

pythonforandroid/bootstraps/sdl2_gradle/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
1212
TODO:
1313
- test with crystax
14-
- hardcoded -lpython2.7 in build/jni/src/Android.mk
1514
- Android.mk require both -I, otherwise it fail in different points
1615
1716
"""
@@ -129,7 +128,7 @@ def run_distribute(self):
129128
shprint(sh.cp, '-r', join(python_dir,
130129
'modules'), crystax_python_dir)
131130
shprint(sh.cp, '-r', self.ctx.get_python_install_dir(),
132-
crystax_python_dir)
131+
join(crystax_python_dir, 'site-packages'))
133132

134133
info('Renaming .so files to reflect cross-compile')
135134
site_packages_dir = join(crystax_python_dir, "site-packages")

0 commit comments

Comments
 (0)
0