aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2010-02-28 21:49:06 -0800
committerAndrew Gerrand <adg@golang.org>2010-02-28 21:49:06 -0800
commit6d0f1fedbfaa7e9445d76aeaadd34d4e9a455d97 (patch)
treeafa2c072a996cda2558521a71e494b5e38334cb1
parenta627d61d5dc5b3eab0f57800e7cc13154a656f7d (diff)
downloadgo-6d0f1fedbfaa7e9445d76aeaadd34d4e9a455d97.tar.gz
go-6d0f1fedbfaa7e9445d76aeaadd34d4e9a455d97.zip
gotest: set $AS to $GOBIN/$AS
May address issue 624. R=rsc CC=golang-dev https://golang.org/cl/223083
-rwxr-xr-xsrc/cmd/gotest/gotest1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cmd/gotest/gotest b/src/cmd/gotest/gotest
index 47662818e1..74da593c41 100755
--- a/src/cmd/gotest/gotest
+++ b/src/cmd/gotest/gotest
@@ -44,6 +44,7 @@ esac
# Allow overrides
GC="$GOBIN/${_GC:-$GC} -I _test"
GL="$GOBIN/${GL:-$LD} -L _test"
+AS="$GOBIN/$AS"
CC="$GOBIN/$CC"
LD="$GOBIN/$LD"
export GC GL O AS CC LD