From 318465b52aad848cb538db54d4b03f4d7608325a Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Wed, 7 Mar 2012 11:38:05 -0500 Subject: [PATCH] make.bash: fix old builds Fixes #3222. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5761044 --- src/make.bash | 3 +++ 1 file changed, 3 insertions(+) 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.' -- 2.50.0