aboutsummaryrefslogtreecommitdiff
path: root/src/clean.bash
diff options
context:
space:
mode:
authorChristian Himpel <chressie@googlemail.com>2010-08-30 15:40:56 -0400
committerRuss Cox <rsc@golang.org>2010-08-30 15:40:56 -0400
commit5c603dbb75c0f1980717dbe6c356f586a7b55f24 (patch)
tree8f2a584dd9704bd6b0d609dab905fad35bdcae4c /src/clean.bash
parentc1497a05898957ebc1deefb408a6781146c1424e (diff)
downloadgo-5c603dbb75c0f1980717dbe6c356f586a7b55f24.tar.gz
go-5c603dbb75c0f1980717dbe6c356f586a7b55f24.zip
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
Diffstat (limited to 'src/clean.bash')
-rwxr-xr-xsrc/clean.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clean.bash b/src/clean.bash
index a62f33998c..8f34310545 100755
--- a/src/clean.bash
+++ b/src/clean.bash
@@ -27,6 +27,6 @@ do(
if test -f clean.bash; then
bash clean.bash
else
- "$GOBIN"/gomake clean
+ gomake clean
fi
)done