Add openssh runtime dependency to git (#17872)

If you use git to clone a repository ssh, git transfers control the ssh
binary available on your path, if that ssh binary was built with
contradictory version of openssl/kerberos, then your git commands will
fail.
This commit is contained in:
Robert Underwood 2020-08-04 10:21:55 -07:00 committed by GitHub
parent 91671be7cc
commit b35b950ee2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -193,6 +193,7 @@ class Git(AutotoolsPackage):
depends_on('pcre2', when='@2.14:')
depends_on('perl')
depends_on('zlib')
depends_on('openssh', type='run')
depends_on('autoconf', type='build')
depends_on('automake', type='build')