From: Gustavo Niemeyer Date: Mon, 21 Mar 2011 03:27:50 +0000 (-0300) Subject: build: reenable clean.bash without gomake X-Git-Tag: weekly.2011-03-28~81 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b889a9f94174823fc68c1dfe340750165ab4019c;p=gostls13.git 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 https://golang.org/cl/4239064 --- diff --git a/src/clean.bash b/src/clean.bash index 596c2fea7c..1955b583b3 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