go: mark git as also being a runtime dependency
This commit is contained in:
parent
826732efec
commit
042666eb7e
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ class Go(Package):
|
||||||
# to-do, make non-c self-hosting compilers feasible without backflips
|
# to-do, make non-c self-hosting compilers feasible without backflips
|
||||||
# should be a dep on external go compiler
|
# should be a dep on external go compiler
|
||||||
depends_on('go-bootstrap', type='build')
|
depends_on('go-bootstrap', type='build')
|
||||||
depends_on('git')
|
depends_on('git', type='alldeps')
|
||||||
|
|
||||||
def install(self, spec, prefix):
|
def install(self, spec, prefix):
|
||||||
bash = which('bash')
|
bash = which('bash')
|
||||||
|
|
Loading…
Reference in a new issue