aboutsummaryrefslogtreecommitdiff
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
commit69039e5a5acc8415c05cf57eead75bb7a90bafdd (patch)
tree16378e104f02425bccdfb39eab1148784aa15270 /src/make.bash
parentd9014dc98a8d490ad48d693c03b2dbe9f0acafaa (diff)
downloadgo-69039e5a5acc8415c05cf57eead75bb7a90bafdd.tar.xz
build Make.deps during make.bash instead
of keeping a checked-in copy. doesn't slow down make.bash appreciably. R=r https://golang.org/cl/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 2038fe2394..249a9cee25 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