diff options
author | Massimiliano Culpo <massimiliano.culpo@googlemail.com> | 2017-04-04 16:03:11 +0200 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-04-04 07:03:11 -0700 |
commit | 20f388cebdc57dd246732c8295187342ec878f6b (patch) | |
tree | 239b920714845e2805630a96fa0445e978ac503f /lib | |
parent | 7de6a28b1573941723ebca205f6e38f5dae312f8 (diff) | |
download | spack-20f388cebdc57dd246732c8295187342ec878f6b.tar.gz spack-20f388cebdc57dd246732c8295187342ec878f6b.tar.bz2 spack-20f388cebdc57dd246732c8295187342ec878f6b.tar.xz spack-20f388cebdc57dd246732c8295187342ec878f6b.zip |
Fixes #3675: Abinit: invalid spec on concretization #(3686)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/spec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/spec.py b/lib/spack/spack/spec.py index b6089c7849..deb650a990 100644 --- a/lib/spack/spack/spec.py +++ b/lib/spack/spack/spec.py @@ -2248,7 +2248,7 @@ class Spec(object): # 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) |