From: Russ Cox Date: Tue, 14 Feb 2012 03:46:50 +0000 (-0500) Subject: build: set $PATH during make.bash X-Git-Tag: weekly.2012-02-14~53 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=982e6c44a0c4f7436b6242b6c1cce37fcb880c3a;p=gostls13.git build: set $PATH during make.bash Should fix build breakage. TBR=golang-dev CC=golang-dev https://golang.org/cl/5656050 --- diff --git a/src/make.bash b/src/make.bash index e30743b683..5677b7012b 100755 --- a/src/make.bash +++ b/src/make.bash @@ -62,7 +62,7 @@ export GOROOT="$(cd .. && pwd)" GOROOT_FINAL="${GOROOT_FINAL:-$GOROOT}" DEFGOROOT='-DGOROOT_FINAL="'"$GOROOT_FINAL"'"' gcc -O2 -Wall -Werror -ggdb -o cmd/dist/dist -Icmd/dist "$DEFGOROOT" cmd/dist/*.c -eval $(./cmd/dist/dist env) +eval $(./cmd/dist/dist env -p) echo if [ "$1" = "--dist-tool" ]; then