Fixes #3675: Abinit: invalid spec on concretization #(3686)

This commit is contained in:
Massimiliano Culpo 2017-04-04 16:03:11 +02:00 committed by Todd Gamblin
parent 7de6a28b15
commit 20f388cebd

View File

@ -2248,7 +2248,7 @@ def satisfies(self, other, deps=True, strict=False, strict_deps=False):
# If we need to descend into dependencies, do it, otherwise we're done.
if deps:
deps_strict = strict
if self.concrete and not other.name:
if self._concrete and not other.name:
# We're dealing with existing specs
deps_strict = True
return self.satisfies_dependencies(other, strict=deps_strict)