summaryrefslogtreecommitdiff
path: root/src/make.bash
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2012-01-09 16:44:01 -0800
committerRuss Cox <rsc@golang.org>2012-01-09 16:44:01 -0800
commitc33a34beb2ef95ca3566c7fc02881d0606926aaf (patch)
tree500715b9e496c3e084dfb15563b1f23c0b227d0e /src/make.bash
parent6b1117b7bb6fc8af18ad31216e2fea6196280ed2 (diff)
downloadgo-c33a34beb2ef95ca3566c7fc02881d0606926aaf.tar.gz
cmd/go: add -v flag to build and install
The -v flag prints the names of packages as they are built/installed. Use -v in make.bash/run.bash to avoid a silent pause during the build while Go code is being compiled. R=golang-dev, r CC=golang-dev http://codereview.appspot.com/5532055
Diffstat (limited to 'src/make.bash')
-rwxr-xr-xsrc/make.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/make.bash b/src/make.bash
index 10eaade53..db8cd7cd4 100755
--- a/src/make.bash
+++ b/src/make.bash
@@ -96,7 +96,7 @@ if $USE_GO_TOOL; then
./buildscript_${GOOS}_$GOARCH.sh
echo '# Building Go code.'
- go install -a std
+ go install -a -v std
else
echo; echo; echo %%%% making pkg %%%%; echo
gomake -C pkg install