]> Cypherpunks repositories - gostls13.git/commitdiff
make.bash: don't remove hgpatch
authorRob Pike <r@golang.org>
Mon, 30 Jan 2012 18:15:43 +0000 (10:15 -0800)
committerRob Pike <r@golang.org>
Mon, 30 Jan 2012 18:15:43 +0000 (10:15 -0800)
R=golang-dev, rsc
CC=golang-dev
https://golang.org/cl/5598046

src/make.bash

index aeaa181090063ff9207c13c3c169d67412d200ad..b7b20bfd5baafa34f696e14c88ff05c297f2237e 100755 (executable)
@@ -27,13 +27,13 @@ mkdir -p "$GOROOT/pkg"
 
 # Remove old, pre-go-tool binaries.
 rm -f "$GOROOT"/bin/[568][acgl]
-rm -f "$GOROOT"/bin/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,hgpatch,quietgcc}
+rm -f "$GOROOT"/bin/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,quietgcc}
 
 # If GOBIN is set and it has a Go compiler, it must also be cleaned.
 if [ -n "GOBIN" ]; then
        if [ -x "$GOBIN"/5g -o -x "$GOBIN"/6g -o -x "$GOBIN"/8g ]; then
                rm -f "$GOBIN"/[568][acgl]
-               rm -f "$GOBIN"/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,hgpatch,quietgcc}
+               rm -f "$GOBIN"/{6cov,6nm,cgo,ebnflint,goapi,gofix,goinstall,gomake,gopack,gopprof,gotest,gotype,govet,goyacc,quietgcc}
        fi
 fi