diff options
author | Harmen Stoppels <harmenstoppels@gmail.com> | 2023-01-19 14:58:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-19 14:58:34 +0100 |
commit | a357a39963b5c9161b85f933f4001de8b951b99a (patch) | |
tree | 2071f645bdc7e8aa185674e456f03133d2b0473a /share | |
parent | a7613407df64b66ea2a3c5e5a0ff4749799ecea2 (diff) | |
download | spack-a357a39963b5c9161b85f933f4001de8b951b99a.tar.gz spack-a357a39963b5c9161b85f933f4001de8b951b99a.tar.bz2 spack-a357a39963b5c9161b85f933f4001de8b951b99a.tar.xz spack-a357a39963b5c9161b85f933f4001de8b951b99a.zip |
depfile: --make-target-prefix -> --make-prefix (#35009)
Since SPACK_PACKAGE_IDS is now also "namespaced" with <prefix>, it makes
more sense to call the flag `--make-prefix` and alias the old flag
`--make-target-prefix` to it.
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 c6e1120bbe..bdfa87acd5 100755 --- a/share/spack/spack-completion.bash +++ b/share/spack/spack-completion.bash @@ -1004,7 +1004,7 @@ _spack_env_revert() { _spack_env_depfile() { if $list_options then - SPACK_COMPREPLY="-h --help --make-target-prefix --make-disable-jobserver --use-buildcache -o --output -G --generator" + SPACK_COMPREPLY="-h --help --make-prefix --make-target-prefix --make-disable-jobserver --use-buildcache -o --output -G --generator" else _all_packages fi |