From 08477f6624e91a0bb1d8a6736af534b77d0075ba Mon Sep 17 00:00:00 2001 From: Todd Gamblin Date: Sun, 6 Nov 2016 20:50:14 -0800 Subject: Don't automatically spider remote list_urls before making stage. (#2263) - This might be useful but we don't want to do it unconditionally. --- lib/spack/spack/package.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/lib/spack/spack/package.py b/lib/spack/spack/package.py index df40d34d33..b238e39be5 100644 --- a/lib/spack/spack/package.py +++ b/lib/spack/spack/package.py @@ -703,12 +703,7 @@ class PackageBase(object): # Construct a path where the stage should build.. s = self.spec stage_name = "%s-%s-%s" % (s.name, s.version, s.dag_hash()) - - # Check list_url alternative archive URLs - dynamic_fetcher = fs.from_list_url(self) - alternate_fetchers = [dynamic_fetcher] if dynamic_fetcher else None - stage = Stage(fetcher, mirror_path=mp, name=stage_name, path=self.path, - alternate_fetchers=alternate_fetchers) + stage = Stage(fetcher, mirror_path=mp, name=stage_name, path=self.path) return stage def _make_stage(self): -- cgit v1.2.3-60-g2f50