Skip to content

Commit b3cc034

Browse files
authored
Merge pull request #2978 from rivian/arch-ref-fix
Arch type error when creating apk for project with setup.py
2 parents 0aba56e + 4c5e34e commit b3cc034

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pythonforandroid/build.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ def run_pymodules_install(ctx, arch, modules, project_dir=None,
764764
if project_dir is not None and (
765765
project_has_setup_py(project_dir) and not ignore_setup_py
766766
):
767-
run_setuppy_install(ctx, project_dir, env, arch.arch)
767+
run_setuppy_install(ctx, project_dir, env, arch)
768768
elif not ignore_setup_py:
769769
info("No setup.py found in project directory: " + str(project_dir))
770770

0 commit comments

Comments
 (0)