1
0
mirror of https://github.com/golang/go synced 2024-10-03 08:21:21 -06:00

gotest: set $AS to $GOBIN/$AS

May address issue 624.

R=rsc
CC=golang-dev
https://golang.org/cl/223083
This commit is contained in:
Andrew Gerrand 2010-02-28 21:49:06 -08:00
parent a627d61d5d
commit 6d0f1fedbf

View File

@ -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