From 9b1690641b5f0d54acba31e88b5095194ed5317c Mon Sep 17 00:00:00 2001 From: Javier Cervantes Date: Fri, 15 Feb 2019 20:33:49 +0100 Subject: Fix bug getting specs from build caches (#9600) --- lib/spack/spack/binary_distribution.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/spack/spack/binary_distribution.py b/lib/spack/spack/binary_distribution.py index 7bceb1189e..fc05b078c3 100644 --- a/lib/spack/spack/binary_distribution.py +++ b/lib/spack/spack/binary_distribution.py @@ -581,7 +581,7 @@ def get_specs(force=False): if re.search("spec.yaml", link) and re.search(path, link): urls.add(link) - _cached_specs = set() + _cached_specs = [] for link in urls: with Stage(link, name="build_cache", keep=True) as stage: if force and os.path.exists(stage.save_filename): @@ -597,7 +597,7 @@ def get_specs(force=False): # we need to mark this spec concrete on read-in. spec = spack.spec.Spec.from_yaml(f) spec._mark_concrete() - _cached_specs.add(spec) + _cached_specs.append(spec) return _cached_specs -- cgit v1.2.3-60-g2f50