summaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2011-12-16 18:50:40 -0500
committerRuss Cox <rsc@golang.org>2011-12-16 18:50:40 -0500
commitb3f2c594906c0ad76c327a78bcb7fca907771457 (patch)
tree89de73d316c46c28388bc355c4e53f7ef7b615c6 /src/make.bash
parent1a5de0df8c96eab6098404088381d17e624fbe48 (diff)
downloadgo-b3f2c594906c0ad76c327a78bcb7fca907771457.tar.gz
runtime: hg revert -r 6ec0a5c12d75
That was the last build that was close to working. I will try that change again next week. Make is being very subtle today. At the reverted-to CL, the ARM traceback appears to be broken. I'll look into that next week too. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5492063
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/make.bash b/src/make.bash
index 21189fe0e..3580d2a0b 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -78,18 +78,12 @@ done
bash "$GOROOT"/src/clean.bash
# pkg builds libcgo and the Go programs in cmd.
-for i in lib9 libbio libmach cmd
+for i in lib9 libbio libmach cmd pkg
do
echo; echo; echo %%%% making $i %%%%; echo
gomake -C $i install
done
-echo; echo; echo %%%% making runtime generated files %%%%; echo
-gomake -C pkg/runtime -f Makefile.auto
-
-echo; echo; echo %%%% making pkg%%%%; echo
-gomake -C pkg install
-
# Print post-install messages.
# Implemented as a function so that all.bash can repeat the output
# after run.bash finishes running all the tests.