commit | 5c603dbb75c0f1980717dbe6c356f586a7b55f24 | [log] [tgz] |
---|---|---|
author | Christian Himpel <chressie@googlemail.com> | Mon Aug 30 15:40:56 2010 -0400 |
committer | Russ Cox <rsc@golang.org> | Mon Aug 30 15:40:56 2010 -0400 |
tree | 8f2a584dd9704bd6b0d609dab905fad35bdcae4c | |
parent | c1497a05898957ebc1deefb408a6781146c1424e [diff] [blame] |
build: remove unnecessary references to GOBIN and GOROOT All scripts and makefiles assume that GOBIN is correctly set in PATH. R=rsc CC=golang-dev https://golang.org/cl/2043041
diff --git a/src/clean.bash b/src/clean.bash index a62f339..8f34310 100755 --- a/src/clean.bash +++ b/src/clean.bash
@@ -27,6 +27,6 @@ if test -f clean.bash; then bash clean.bash else - "$GOBIN"/gomake clean + gomake clean fi )done