diff options
author | Peter Josef Scheibel <scheibel1@llnl.gov> | 2019-01-07 18:39:38 -0800 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2019-01-07 20:40:34 -0800 |
commit | 9f799957180ddf9e710fb3386a23ee824f56b9aa (patch) | |
tree | 7de8ad9b9756c1a6ecc9f2b828d82433b977f8d8 | |
parent | b984adb386e1feeeeb00b60ce69da58f583c7a73 (diff) | |
download | spack-9f799957180ddf9e710fb3386a23ee824f56b9aa.tar.gz spack-9f799957180ddf9e710fb3386a23ee824f56b9aa.tar.bz2 spack-9f799957180ddf9e710fb3386a23ee824f56b9aa.tar.xz spack-9f799957180ddf9e710fb3386a23ee824f56b9aa.zip |
For spec-file-based installs, store the initial spec read from the file as the abstract spec
-rw-r--r-- | lib/spack/spack/cmd/install.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/cmd/install.py b/lib/spack/spack/cmd/install.py index fa63208b14..fc79c5d689 100644 --- a/lib/spack/spack/cmd/install.py +++ b/lib/spack/spack/cmd/install.py @@ -272,6 +272,7 @@ def install(parser, args, **kwargs): tty.warn(msg.format(file)) continue + abstract_specs.append(s) specs.append(s.concretized()) if len(specs) == 0: |