diff options
author | Tiziano Müller <tiziano.mueller@hpe.com> | 2023-05-31 03:03:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-30 18:03:44 -0700 |
commit | 0f84782fccfcb5e57ecb0351fb629060100f337c (patch) | |
tree | 208a02f6193c7cc718467330b4204e619ac6fa1b /share | |
parent | 43b86ce28270943849056893d0265db6e14bf2aa (diff) | |
download | spack-0f84782fccfcb5e57ecb0351fb629060100f337c.tar.gz spack-0f84782fccfcb5e57ecb0351fb629060100f337c.tar.bz2 spack-0f84782fccfcb5e57ecb0351fb629060100f337c.tar.xz spack-0f84782fccfcb5e57ecb0351fb629060100f337c.zip |
Bugfix: cray manifest parsing regression (#37909)
fa7719a changed syntax for specifying exact versions, which are
required for some compiler specs (including those read as part
of parsing a Cray manifest). This fixes that and also makes a
couple other improvements to manifest parsing.
* Instantiate compiler specs with exact versions (fixes #37893)
* fix slingshot network detection (CPE 22.10+ has libcxi.so
in /usr/lib64)
* "spack external find": add arg to ignore default dir for cray
manifests
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/spack-completion.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/spack/spack-completion.bash b/share/spack/spack-completion.bash index 1644cffe6f..b06d468aad 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1060,7 +1060,7 @@ _spack_external_list() { } _spack_external_read_cray_manifest() { - SPACK_COMPREPLY="-h --help --file --directory --dry-run --fail-on-error" + SPACK_COMPREPLY="-h --help --file --directory --ignore-default-dir --dry-run --fail-on-error" } _spack_fetch() { |