Skip to content

Commit d0081ba

Browse files
authored
Merge pull request kivy#1171 from inclement/fix_webview_biglink
Add the ndk platform libs dir during biglink
2 parents d4c33bc + 7063632 commit d0081ba

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pythonforandroid/build.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,8 @@ def biglink(ctx, arch):
674674
join(ctx.get_libs_dir(arch.arch), 'libpymodules.so'),
675675
obj_dir.split(' '),
676676
extra_link_dirs=[join(ctx.bootstrap.build_dir,
677-
'obj', 'local', arch.arch)],
677+
'obj', 'local', arch.arch),
678+
os.path.abspath('.')],
678679
env=env)
679680

680681

0 commit comments

Comments
 (0)