summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorXavier Thomas <43476211+xavierohan@users.noreply.github.com>2020-01-27 19:56:08 +0530
committerGitHub <noreply@github.com>2020-01-27 19:56:08 +0530
commitfe50af5c1867b1c2d3031084c4804a3416f405d4 (patch)
tree9a678125e8b41d4ed3954f49e5bd20873549b6e0 /tools
parent02cbcd79cbd2cfda1da22ff782eae98a97147b41 (diff)
downloadnumpy-fe50af5c1867b1c2d3031084c4804a3416f405d4.tar.gz
Update tools/openblas_support.py
Co-Authored-By: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/openblas_support.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/openblas_support.py b/tools/openblas_support.py
index c3e963aaa..301f32b4b 100644
--- a/tools/openblas_support.py
+++ b/tools/openblas_support.py
@@ -43,7 +43,8 @@ def download_openblas(target, arch, ilp64):
fnsuffix = {None: "", "64_": "64_"}[ilp64]
filename = ''
if arch in ('aarch64', 'ppc64le', 's390x'):
- filename = f'{RACKSPACE}/openblas{fnsuffix}-{OPENBLAS_LONG}-manylinux2014_{arch}'
+ suffix = f'manylinux2014_{arch}.tar.gz'
+ filename = f'{RACKSPACE}/openblas{fnsuffix}-{OPENBLAS_LONG}-{suffix}'
typ = 'tar.gz'
typ = 'tar.gz'
elif arch == 'darwin':