From 75761bbbc5dae9606c60f37d8c6f665cd669f01f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?--=3DFurtiF=E2=84=A2=3D--?= Date: Sun, 24 Jul 2022 22:14:40 +0200 Subject: [PATCH 1/2] Update __init__.py .buildozer/android/platform/python-for-android/pythonforandroid/recipes/hostpython3/__init__.py", line 69, in get_recipe_env env["PKG_CONFIG_PATH"] = os.pathsep.join( TypeError: str.join() takes exactly one argument (2 given) --- pythonforandroid/recipes/hostpython3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/hostpython3/__init__.py b/pythonforandroid/recipes/hostpython3/__init__.py index 8cda969f3a..3f39707be7 100644 --- a/pythonforandroid/recipes/hostpython3/__init__.py +++ b/pythonforandroid/recipes/hostpython3/__init__.py @@ -67,7 +67,7 @@ def get_recipe_env(self, arch=None): openssl_prereq = OpenSSLPrerequisite() if env.get("PKG_CONFIG_PATH", ""): env["PKG_CONFIG_PATH"] = os.pathsep.join( - openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"] + openssl_prereq.pkg_config_location # , env["PKG_CONFIG_PATH"] ) else: env["PKG_CONFIG_PATH"] = openssl_prereq.pkg_config_location From 40ce48f322895c4626121a2d1973f34524dae25d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?--=3DFurtiF=E2=84=A2=3D--?= Date: Mon, 25 Jul 2022 16:02:26 +0200 Subject: [PATCH 2/2] according of https://github.com/kivy/python-for-android/pull/2642#pullrequestreview-1048683793 --- pythonforandroid/recipes/hostpython3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/hostpython3/__init__.py b/pythonforandroid/recipes/hostpython3/__init__.py index 3f39707be7..ef2324aea4 100644 --- a/pythonforandroid/recipes/hostpython3/__init__.py +++ b/pythonforandroid/recipes/hostpython3/__init__.py @@ -67,7 +67,7 @@ def get_recipe_env(self, arch=None): openssl_prereq = OpenSSLPrerequisite() if env.get("PKG_CONFIG_PATH", ""): env["PKG_CONFIG_PATH"] = os.pathsep.join( - openssl_prereq.pkg_config_location # , env["PKG_CONFIG_PATH"] + [openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"]] ) else: env["PKG_CONFIG_PATH"] = openssl_prereq.pkg_config_location