summaryrefslogtreecommitdiff
path: root/src/clean.bash
diff options
context:
space:
mode:
authorChristian Himpel <chressie@googlemail.com>2010-08-30 15:40:56 -0400
committerChristian Himpel <chressie@googlemail.com>2010-08-30 15:40:56 -0400
commit04276d50e7e1fc9774eed07f7bf1b3b82cd40896 (patch)
tree139911913a528ba8ccfb9e3b1dabc6c26e673404 /src/clean.bash
parent6ee2f7ba601fdbcbc6534df7446c1446f7f7ecba (diff)
downloadgo-04276d50e7e1fc9774eed07f7bf1b3b82cd40896.tar.gz
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 http://codereview.appspot.com/2043041 Committer: Russ Cox <rsc@golang.org>
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 a62f33998..8f3431054 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