From 2b3b5cf4de0d90db85ac4e618ab9a3f383c50268 Mon Sep 17 00:00:00 2001 From: Mike Samuel Date: Tue, 13 Sep 2011 18:50:02 -0700 Subject: [PATCH] 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 --- src/pkg/template/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pkg/template/Makefile b/src/pkg/template/Makefile index 3ed3b03308..730b287aff 100644 --- a/src/pkg/template/Makefile +++ b/src/pkg/template/Makefile @@ -6,6 +6,7 @@ include ../../Make.inc TARG=template GOFILES=\ + doc.go\ exec.go\ funcs.go\ helper.go\ -- 2.48.1