diff options
| author | Russ Cox <rsc@golang.org> | 2012-03-07 11:38:05 -0500 |
|---|---|---|
| committer | Russ Cox <rsc@golang.org> | 2012-03-07 11:38:05 -0500 |
| commit | 318465b52aad848cb538db54d4b03f4d7608325a (patch) | |
| tree | b9b9981ff35fbb7e494db34034f287059a659a47 /src/make.bash | |
| parent | 40807282acad30201ae0979db24dca01e684e694 (diff) | |
| download | go-318465b52aad848cb538db54d4b03f4d7608325a.tar.xz | |
make.bash: fix old builds
Fixes #3222.
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/5761044
Diffstat (limited to 'src/make.bash')
| -rwxr-xr-x | src/make.bash | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/make.bash b/src/make.bash index aaee75e460..3668e92046 100755 --- a/src/make.bash +++ b/src/make.bash @@ -76,6 +76,9 @@ do fi done +# Clean old generated file that will cause problems in the build. +rm -f ./pkg/runtime/runtime_defs.go + # Finally! Run the build. echo '# Building C bootstrap tool.' |
