summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorPatrick Gartung <gartung@fnal.gov>2019-05-02 10:02:25 -0500
committerGitHub <noreply@github.com>2019-05-02 10:02:25 -0500
commit309122c3293733dbcb140765a8e0e7f6d1098691 (patch)
tree2ee2709c06ae5cfdf9c93f0e264ccebb6639ed9d /lib
parent0e9513be97a8008e420eea4b02840288931e03c0 (diff)
downloadspack-309122c3293733dbcb140765a8e0e7f6d1098691.tar.gz
spack-309122c3293733dbcb140765a8e0e7f6d1098691.tar.bz2
spack-309122c3293733dbcb140765a8e0e7f6d1098691.tar.xz
spack-309122c3293733dbcb140765a8e0e7f6d1098691.zip
Don't use buildcache to install patchelf (#11343)
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/relocate.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/relocate.py b/lib/spack/spack/relocate.py
index d338242766..4f4626e0cb 100644
--- a/lib/spack/spack/relocate.py
+++ b/lib/spack/spack/relocate.py
@@ -41,7 +41,7 @@ def get_patchelf():
patchelf_spec = spack.cmd.parse_specs("patchelf", concretize=True)[0]
patchelf = spack.repo.get(patchelf_spec)
if not patchelf.installed:
- patchelf.do_install()
+ patchelf.do_install(use_cache=False)
patchelf_executable = os.path.join(patchelf.prefix.bin, "patchelf")
return patchelf_executable
else: