1
0
mirror of https://github.com/golang/go synced 2024-11-21 17:04:42 -07:00

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
This commit is contained in:
Gustavo Niemeyer 2011-03-21 00:27:50 -03:00
parent f91e677e12
commit b889a9f941

View File

@ -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