We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 525cbb0 commit 6519129Copy full SHA for 6519129
1 file changed
pythonforandroid/recipes/cffi/__init__.py
@@ -33,10 +33,6 @@ def get_recipe_env(self, arch=None, **kwargs):
33
env['LDFLAGS'] += ' -L{}'.format(os.path.join(self.ctx.bootstrap.build_dir, 'libs', arch.arch))
34
# required for libc and libdl
35
env['LDFLAGS'] += ' -L{}'.format(arch.ndk_lib_dir_versioned)
36
- env['PYTHONPATH'] += ':'.join([
37
- self.ctx.get_site_packages_dir(arch),
38
- env['BUILDLIB_PATH'],
39
- ])
40
env['LDFLAGS'] += ' -L{}'.format(self.ctx.python_recipe.link_root(arch.arch))
41
env['LDFLAGS'] += ' -lpython{}'.format(self.ctx.python_recipe.link_version)
42
return env
0 commit comments