1
0
mirror of https://github.com/golang/go synced 2024-11-21 14:44:40 -07:00

test: put GOROOT/bin before all others in run

If you installed a 6g in /usr/bin it interferes
with test/run otherwise.

R=rsc
CC=golang-dev
https://golang.org/cl/4944046
This commit is contained in:
Luuk van Dijk 2011-08-24 16:12:20 +02:00
parent fa6d038e98
commit 940281bd3c

View File

@ -31,7 +31,7 @@ unset GREP_OPTIONS # in case user has a non-standard set
failed=0
PATH=/bin:/usr/bin:/usr/local/bin:${GOBIN:-$GOROOT/bin}:`pwd`
PATH=${GOBIN:-$GOROOT/bin}:`pwd`:/bin:/usr/bin:/usr/local/bin
RUNFILE="/tmp/gorun-$$-$USER"
TMP1FILE="/tmp/gotest1-$$-$USER"