ensure view projections for extensions always point to extendee (#33848)
This commit is contained in:
parent
d49c992b23
commit
2d2c591633
1 changed files with 11 additions and 2 deletions
|
@ -493,9 +493,14 @@ def get_projection_for_spec(self, spec):
|
|||
Relies on the ordering of projections to avoid ambiguity.
|
||||
"""
|
||||
spec = spack.spec.Spec(spec)
|
||||
proj = spack.projections.get_projection(self.projections, spec)
|
||||
locator_spec = spec
|
||||
|
||||
if spec.package.extendee_spec:
|
||||
locator_spec = spec.package.extendee_spec
|
||||
|
||||
proj = spack.projections.get_projection(self.projections, locator_spec)
|
||||
if proj:
|
||||
return os.path.join(self._root, spec.format(proj))
|
||||
return os.path.join(self._root, locator_spec.format(proj))
|
||||
return self._root
|
||||
|
||||
def get_all_specs(self):
|
||||
|
@ -743,6 +748,10 @@ def get_projection_for_spec(self, spec):
|
|||
Relies on the ordering of projections to avoid ambiguity.
|
||||
"""
|
||||
spec = spack.spec.Spec(spec)
|
||||
|
||||
if spec.package.extendee_spec:
|
||||
spec = spec.package.extendee_spec
|
||||
|
||||
proj = spack.projections.get_projection(self.projections, spec)
|
||||
if proj:
|
||||
return os.path.join(self._root, spec.format(proj))
|
||||
|
|
Loading…
Reference in a new issue