]> Cypherpunks repositories - gostls13.git/commit
template: add doc.go to Makefile
authorMike Samuel <mikesamuel@gmail.com>
Wed, 14 Sep 2011 01:50:02 +0000 (18:50 -0700)
committerMike Samuel <mikesamuel@gmail.com>
Wed, 14 Sep 2011 01:50:02 +0000 (18:50 -0700)
commit2b3b5cf4de0d90db85ac4e618ab9a3f383c50268
treeb22b5618bc83d7922d73a83b0646dd0a24cbeb57
parent15d47ce2194258021ad6f26da8ed866e42cbd1e9
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