]> Cypherpunks repositories - gostls13.git/commitdiff
build: add a few missing --no-print-directory
authorRuss Cox <rsc@golang.org>
Mon, 13 Dec 2010 20:50:57 +0000 (15:50 -0500)
committerRuss Cox <rsc@golang.org>
Mon, 13 Dec 2010 20:50:57 +0000 (15:50 -0500)
Reported by W. Michael Petullo <mike@flyn.org>

Fixes #1269.

R=r, r2
CC=golang-dev
https://golang.org/cl/3618041

doc/progs/run
src/cmd/gc/mkbuiltin
src/make.bash

index 3489a882a97354d8024e39d30cb29ee10109e35c..29f1f81528fb2dc94526db5d6cd0ea2bd208fae8 100755 (executable)
@@ -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
index 754844e1f6cbe0ff78feef235bb5e46d2696b184..4dfff1caa54cd07e1f424020cf820601b57f0e75 100755 (executable)
@@ -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
index 2bfc0485305198ba6b10ef8673588451308d886b..0d0dae61f5543b8544d1f753e99e739921449d2e 100755 (executable)
@@ -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".