Hello r (cc: golang-dev@googlegroups.com), I'd like you to review the following change.
LGTM On Jan 7, 2010, at 12:59 PM, rsc@golang.org wrote: > Reviewers: r, > > Message: > Hello r (cc: golang-dev@googlegroups.com), > > I'd like you to review the following change. > > > Description: > sync make-arm.bash with make.bash > > Please review this at http://codereview.appspot.com/183135 > > Affected files: > M src/make-arm.bash > > > Index: src/make-arm.bash > =================================================================== > --- a/src/make-arm.bash > +++ b/src/make-arm.bash > @@ -44,8 +44,6 @@ > exit 1 > esac > > -bash clean.bash > - > rm -f "$GOBIN"/quietgcc > cp quietgcc.bash "$GOBIN"/quietgcc > chmod +x "$GOBIN"/quietgcc > @@ -58,7 +56,12 @@ > (echo '#!/bin/sh'; echo 'exec '$MAKE' "$@"') >"$GOBIN"/gomake > chmod +x "$GOBIN"/gomake > > -bash clean.bash > +( > + cd "$GOROOT"/src/pkg; > + bash deps.bash # do this here so clean.bash will work in the pkg > directory > +) > +bash "$GOROOT"/src/clean.bash > + > > # TODO(kaib): converge with normal build > #for i in lib9 libbio libmach cmd pkg libcgo cmd/cgo cmd/ebnflint > cmd/godoc cmd/gofmt > >
Hello r (cc: golang-dev@googlegroups.com), I'd like you to review this change.
*** Submitted as http://code.google.com/p/go/source/detail?r=cf997317e8bb *** sync make-arm.bash with make.bash R=r CC=golang-dev http://codereview.appspot.com/183135