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
commitf536e6624783673bbc9b347e43d3144dabf853fe (patch)
tree31e79c0cb0e9e943a8aca0337c20f311d8d48585 /src/make.bash
parent343f431e7302d35c608f819b6496f95b4849dfb9 (diff)
downloadgolang-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-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