diff options
author | Russ Cox <rsc@golang.org> | 2011-12-22 22:24:34 -0500 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2011-12-22 22:24:34 -0500 |
commit | 0722e94a8a9b228e6889f9f475234bfc9fcad57d (patch) | |
tree | 994360ddfc6c555229629d04f9b167544ef64e22 /src/pkg/runtime/Makefile | |
parent | c5cfdce26a624b375e13b54550c6807d195b6cee (diff) | |
download | go-0722e94a8a9b228e6889f9f475234bfc9fcad57d.tar.gz |
runtime: delete old asm_*.h if still around
Fixes bug Robert ran into.
R=golang-dev, dsymonds
CC=golang-dev
http://codereview.appspot.com/5501070
Diffstat (limited to 'src/pkg/runtime/Makefile')
-rw-r--r-- | src/pkg/runtime/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/runtime/Makefile b/src/pkg/runtime/Makefile index 87c18f07f..50d0515e2 100644 --- a/src/pkg/runtime/Makefile +++ b/src/pkg/runtime/Makefile @@ -137,7 +137,7 @@ $(pkgdir)/%.h: %.h clean: clean-local clean-local: - rm -f $(AUTOHFILES) runtime_defs.go version*.go + rm -f $(AUTOHFILES) runtime_defs.go version*.go asm_*.h arch_GOARCH.h: arch_$(GOARCH).h cp $^ $@ |