diff options
author | Russ Cox <rsc@golang.org> | 2009-11-19 16:27:13 -0800 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-11-19 16:27:13 -0800 |
commit | f536e6624783673bbc9b347e43d3144dabf853fe (patch) | |
tree | 31e79c0cb0e9e943a8aca0337c20f311d8d48585 /src/make.bash | |
parent | 343f431e7302d35c608f819b6496f95b4849dfb9 (diff) | |
download | golang-f536e6624783673bbc9b347e43d3144dabf853fe.tar.gz |
build Make.deps during make.bash instead
of keeping a checked-in copy. doesn't
slow down make.bash appreciably.
R=r
http://codereview.appspot.com/156099
Diffstat (limited to 'src/make.bash')
-rwxr-xr-x | src/make.bash | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/make.bash b/src/make.bash index 2038fe239..249a9cee2 100755 --- a/src/make.bash +++ b/src/make.bash @@ -90,6 +90,10 @@ do cmd) bash make.bash ;; + pkg) + bash deps.bash + gomake install + ;; *) gomake install esac |