From 6d0f1fedbfaa7e9445d76aeaadd34d4e9a455d97 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Sun, 28 Feb 2010 21:49:06 -0800 Subject: [PATCH] gotest: set $AS to $GOBIN/$AS May address issue 624. R=rsc CC=golang-dev https://golang.org/cl/223083 --- src/cmd/gotest/gotest | 1 + 1 file changed, 1 insertion(+) 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