Skip to content

Commit f379fc7

Browse files
committed
Fixes a typo
1 parent 9554839 commit f379fc7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

pythonforandroid/recipes/hostpython3/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,9 @@ def get_recipe_env(self, arch=None):
6666
env = os.environ.copy()
6767
openssl_prereq = OpenSSLPrerequisite()
6868
if env.get("PKG_CONFIG_PATH", ""):
69-
os.pathsep.join(openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"])
69+
env["PKG_CONFIG_PATH"] = os.pathsep.join(
70+
openssl_prereq.pkg_config_location, env["PKG_CONFIG_PATH"]
71+
)
7072
else:
7173
env["PKG_CONFIG_PATH"] = openssl_prereq.pkg_config_location
7274
return env

0 commit comments

Comments
 (0)