1
0
mirror of https://github.com/golang/go synced 2024-11-21 09:24:42 -07:00

build: add a few missing --no-print-directory

Reported by W. Michael Petullo <mike@flyn.org>

Fixes #1269.

R=r, r2
CC=golang-dev
https://golang.org/cl/3618041
This commit is contained in:
Russ Cox 2010-12-13 15:50:57 -05:00
parent 318c1eeb32
commit 3a2ba994b6
3 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@
set -e
eval $(gomake -f ../../src/Make.inc go-env)
eval $(gomake --no-print-directory -f ../../src/Make.inc go-env)
if [ -z "$O" ]; then
echo 'missing $O - maybe no Make.$GOARCH?' 1>&2

View File

@ -10,7 +10,7 @@
set -e
eval $(gomake -f ../../Make.inc go-env)
eval $(gomake --no-print-directory -f ../../Make.inc go-env)
if [ -z "$GC" ]; then
echo 'missing $GC - gomake failed?' 1>&2
exit 1

View File

@ -90,7 +90,7 @@ done
# Implemented as a function so that all.bash can repeat the output
# after run.bash finishes running all the tests.
installed() {
eval $(gomake -f Make.inc go-env)
eval $(gomake --no-print-directory -f Make.inc go-env)
echo
echo ---
echo Installed Go for $GOOS/$GOARCH in "$GOROOT".