From 146a703cd1ecf096d270873090c8eeef6438b5f7 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 9 Jan 2012 16:44:01 -0800 Subject: 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 https://golang.org/cl/5532055 --- src/make.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/make.bash') diff --git a/src/make.bash b/src/make.bash index 10eaade539..db8cd7cd49 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 -- cgit v1.3