summaryrefslogtreecommitdiff
path: root/src
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
commit629eba4cbbab8ec1abcef3993e259fbd79f5e1cd (patch)
tree0532622ea7ccc5be13eef8bce03486c643b0f43a /src
parent30a15dab9329d1dafbdd47b5ec321476d9d36d38 (diff)
downloadgolang-629eba4cbbab8ec1abcef3993e259fbd79f5e1cd.tar.gz
gotest: set $AS to $GOBIN/$AS
May address issue 624. R=rsc CC=golang-dev http://codereview.appspot.com/223083
Diffstat (limited to 'src')
-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 47662818e..74da593c4 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