From: Shenghou Ma Date: Mon, 3 Mar 2014 07:16:15 +0000 (-0500) Subject: test/run: add /usr/pkg/bin to PATH. X-Git-Tag: go1.3beta1~512 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=8b1b1e159d0ff464062b5325edf29c52000fd1f4;p=gostls13.git test/run: add /usr/pkg/bin to PATH. perl is installed by pkgsrc to /usr/pkg/bin. LGTM=iant R=golang-codereviews, iant CC=golang-codereviews https://golang.org/cl/70630043 --- diff --git a/test/run b/test/run index d206312a29..729fc1eaaf 100755 --- a/test/run +++ b/test/run @@ -33,7 +33,7 @@ unset GOROOT_FINAL # breaks ./ imports failed=0 -PATH=${GOBIN:-$GOROOT/bin}:`pwd`:/bin:/usr/bin:/usr/local/bin +PATH=${GOBIN:-$GOROOT/bin}:`pwd`:/bin:/usr/bin:/usr/local/bin:/usr/pkg/bin # TODO: We add the tool directory to the PATH to avoid thinking about a better way. PATH="$GOTOOLDIR:$PATH"