Don't use buildcache to install patchelf (#11343)
This commit is contained in:
parent
0e9513be97
commit
309122c329
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ def get_patchelf():
|
||||||
patchelf_spec = spack.cmd.parse_specs("patchelf", concretize=True)[0]
|
patchelf_spec = spack.cmd.parse_specs("patchelf", concretize=True)[0]
|
||||||
patchelf = spack.repo.get(patchelf_spec)
|
patchelf = spack.repo.get(patchelf_spec)
|
||||||
if not patchelf.installed:
|
if not patchelf.installed:
|
||||||
patchelf.do_install()
|
patchelf.do_install(use_cache=False)
|
||||||
patchelf_executable = os.path.join(patchelf.prefix.bin, "patchelf")
|
patchelf_executable = os.path.join(patchelf.prefix.bin, "patchelf")
|
||||||
return patchelf_executable
|
return patchelf_executable
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue