From 982e6c44a0c4f7436b6242b6c1cce37fcb880c3a Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 13 Feb 2012 22:46:50 -0500 Subject: [PATCH] build: set $PATH during make.bash Should fix build breakage. TBR=golang-dev CC=golang-dev https://golang.org/cl/5656050 --- src/make.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0