aboutsummaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
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 21189fe0e6..3580d2a0bd 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.