template: add doc.go to Makefile

The template package is the only one that has a doc.go not mentioned
in its Makefile.

This doesn't seem to bother godoc, but seems like a bug to me.

$ for d in $(find pkg -name doc.go); do echo $d; grep doc.go $(dirname $d)/Makefile; done
pkg/fmt/doc.go
        doc.go\
pkg/go/doc/doc.go
        doc.go\
pkg/gob/doc.go
        doc.go\
pkg/html/doc.go
        doc.go\
pkg/old/template/doc.go
        doc.go\
pkg/sync/atomic/doc.go
        doc.go\
pkg/template/doc.go

R=r
CC=golang-dev
https://golang.org/cl/5003047
This commit is contained in:
Mike Samuel 2011-09-13 18:50:02 -07:00
parent 15d47ce219
commit 2b3b5cf4de
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ include ../../Make.inc
TARG=template
GOFILES=\
doc.go\
exec.go\
funcs.go\
helper.go\