summaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2009-11-19 16:27:13 -0800
committerRuss Cox <rsc@golang.org>2009-11-19 16:27:13 -0800
commit8a38aecdcb621dab54ca07068e6d45ec49163a8d (patch)
tree31e79c0cb0e9e943a8aca0337c20f311d8d48585 /src/make.bash
parentfcfd499e60c5469254426b720ff8daa64fbe94db (diff)
downloadgo-8a38aecdcb621dab54ca07068e6d45ec49163a8d.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-xsrc/make.bash4
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