summaryrefslogtreecommitdiff
path: root/src/clean.bash
diff options
context:
space:
mode:
authorGustavo Niemeyer <gustavo@niemeyer.net>2011-03-21 00:27:50 -0300
committerGustavo Niemeyer <gustavo@niemeyer.net>2011-03-21 00:27:50 -0300
commitc20dc59869630e4f9f3733f1902f6eaba23db47c (patch)
treea66c13bcab18b01497f3606ea3c6d69842a1b6a1 /src/clean.bash
parent0e4a4aaf5d422585980d98b9fb8f70eaa930bc5c (diff)
downloadgo-c20dc59869630e4f9f3733f1902f6eaba23db47c.tar.gz
build: reenable clean.bash without gomake
This change had already been made in revision 7371, but was then undone with changes in revision 7606. R=golang-dev, rsc1 CC=golang-dev http://codereview.appspot.com/4239064
Diffstat (limited to 'src/clean.bash')
-rwxr-xr-xsrc/clean.bash3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clean.bash b/src/clean.bash
index 596c2fea7..1955b583b 100755
--- a/src/clean.bash
+++ b/src/clean.bash
@@ -24,5 +24,6 @@ for i in lib9 libbio libmach cmd pkg \
../misc/cgo/life ../misc/cgo/test \
../test/bench ../test/garbage
do
- gomake -C "$GOROOT/src/$i" clean
+ # Do not use gomake here. It may not be available.
+ $MAKE -C "$GOROOT/src/$i" clean
done