diff options
author | Kyle Gerheiser <3209794+kgerheiser@users.noreply.github.com> | 2022-05-02 11:02:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 09:02:42 -0600 |
commit | 4509e96704fec14fce3257933b5c66b2e2da9b69 (patch) | |
tree | b36dd23f48e2f9dca4e88a3fccd4bc2d852d3e69 | |
parent | f0bb7c74a9902e4ea6aef2e401147bf2875f68e6 (diff) | |
download | spack-4509e96704fec14fce3257933b5c66b2e2da9b69.tar.gz spack-4509e96704fec14fce3257933b5c66b2e2da9b69.tar.bz2 spack-4509e96704fec14fce3257933b5c66b2e2da9b69.tar.xz spack-4509e96704fec14fce3257933b5c66b2e2da9b69.zip |
git-lfs: add build-tools tag (#30431)
Let Spack find external git-lfs by default. There seemed to be agreement to add git-lfs to the build tools in https://github.com/spack/spack/pull/29031.
-rw-r--r-- | var/spack/repos/builtin/packages/git-lfs/package.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/git-lfs/package.py b/var/spack/repos/builtin/packages/git-lfs/package.py index ccd060094f..3cdceb2ce0 100644 --- a/var/spack/repos/builtin/packages/git-lfs/package.py +++ b/var/spack/repos/builtin/packages/git-lfs/package.py @@ -18,6 +18,8 @@ class GitLfs(MakefilePackage): homepage = "https://git-lfs.github.com" url = "https://github.com/git-lfs/git-lfs/archive/v2.6.1.tar.gz" + tags = ['build-tools'] + executables = ['^git-lfs$'] maintainers = ['sethrj'] |