Recover the old patching order for packages. (#7558)
fixes #7543 This is very likely an hot-fix, while a more permanent solution is needed. See this comment for more insight: https://github.com/spack/spack/pull/7193#discussion_r176448831 on the problem.
This commit is contained in:
parent
c8a8079c34
commit
6699ba8769
1 changed files with 1 additions and 1 deletions
|
@ -1162,7 +1162,7 @@ def patches_to_apply(self):
|
|||
patch_list
|
||||
for spec, patch_list in self.patches.items()
|
||||
if self.spec.satisfies(spec))
|
||||
return sorted(patchesToApply, key=lambda p: p.path_or_url)
|
||||
return list(patchesToApply)
|
||||
|
||||
def content_hash(self, content=None):
|
||||
"""Create a hash based on the sources and logic used to build the
|
||||
|
|
Loading…
Reference in a new issue