Commit 13ae2375 authored by Brad Fitzpatrick's avatar Brad Fitzpatrick

src: don't assume go is in PATH in buildall.bash

Change-Id: I5569dcdefe8adba346810124b16721674956bce6
Reviewed-on: https://go-review.googlesource.com/9515Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent bfb077e0
......@@ -51,7 +51,7 @@ do
export GOARCH=386
export GO386=387
fi
if ! go build -a std; then
if ! "$GOROOT/bin/go" build -a std; then
failed=true
if $sete; then
exit 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment