We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a5916 commit 41f5cf0Copy full SHA for 41f5cf0
pythonforandroid/bootstraps/sdl2_gradle/__init__.py
@@ -11,7 +11,6 @@
11
12
TODO:
13
- test with crystax
14
-- hardcoded -lpython2.7 in build/jni/src/Android.mk
15
- Android.mk require both -I, otherwise it fail in different points
16
17
"""
@@ -129,7 +128,7 @@ def run_distribute(self):
129
128
shprint(sh.cp, '-r', join(python_dir,
130
'modules'), crystax_python_dir)
131
shprint(sh.cp, '-r', self.ctx.get_python_install_dir(),
132
- crystax_python_dir)
+ join(crystax_python_dir, 'site-packages'))
133
134
info('Renaming .so files to reflect cross-compile')
135
site_packages_dir = join(crystax_python_dir, "site-packages")
0 commit comments