go: mark git as also being a runtime dependency

This commit is contained in:
Ben Boeckel 2016-08-15 10:46:45 -04:00
parent 826732efec
commit 042666eb7e

View file

@ -25,7 +25,7 @@ class Go(Package):
# to-do, make non-c self-hosting compilers feasible without backflips
# should be a dep on external go compiler
depends_on('go-bootstrap', type='build')
depends_on('git')
depends_on('git', type='alldeps')
def install(self, spec, prefix):
bash = which('bash')