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 9554839 commit f379fc7Copy full SHA for f379fc7
pythonforandroid/recipes/hostpython3/__init__.py
@@ -66,7 +66,9 @@ def get_recipe_env(self, arch=None):
66
env = os.environ.copy()
67
openssl_prereq = OpenSSLPrerequisite()
68
if env.get("PKG_CONFIG_PATH", ""):
69
- os.pathsep.join(openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"])
+ env["PKG_CONFIG_PATH"] = os.pathsep.join(
70
+ openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"]
71
+ )
72
else:
73
env["PKG_CONFIG_PATH"] = openssl_prereq.pkg_config_location
74
return env
0 commit comments