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 dd69749 commit fe620f3Copy full SHA for fe620f3
pythonforandroid/recipes/libcurl/__init__.py
@@ -17,8 +17,11 @@ def build_arch(self, arch):
17
super(LibcurlRecipe, self).build_arch(arch)
18
env = self.get_recipe_env(arch)
19
20
- r = self.get_recipe('openssl', self.ctx)
21
- openssl_dir = r.get_build_dir(arch.arch)
+ openssl_recipe = self.get_recipe('openssl', self.ctx)
+ openssl_dir = openssl_recipe.get_build_dir(arch.arch)
22
+
23
+ env['LDFLAGS'] += openssl_recipe.link_dirs_flags(arch)
24
+ env['LIBS'] = env.get('LIBS', '') + openssl_recipe.link_libs_flags()
25
26
with current_directory(self.get_build_dir(arch.arch)):
27
dst_dir = join(self.get_build_dir(arch.arch), 'dist')
0 commit comments