8000 Update to bzip2-1.0.8-3 · python/cpython@6f18528 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6f18528

Browse files
committed
Update to bzip2-1.0.8-3
1 parent e4192b4 commit 6f18528

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Android/android.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,13 @@ def make_build_python(context):
172172

173173

174174
def unpack_deps(host, prefix_dir):
175+
os.chdir(prefix_dir)
175176
deps_url = "https://github.com/beeware/cpython-android-source-deps/releases/download"
176-
for name_ver in ["bzip2-1.0.8-2", "libffi-3.4.4-3", "openssl-3.0.15-4",
177+
for name_ver in ["bzip2-1.0.8-3", "libffi-3.4.4-3", "openssl-3.0.15-4",
177178
"sqlite-3.49.1-0", "xz-5.4.6-1"]:
178179
filename = f"{name_ver}-{host}.tar.gz"
179180
download(f"{deps_url}/{name_ver}/{filename}")
180-
shutil.unpack_archive(filename, prefix_dir)
181+
shutil.unpack_archive(filename)
181182
os.remove(filename)
182183

183184

0 commit comments

Comments
 (0)
0