1
0
mirror of https://github.com/golang/go synced 2024-11-12 06:30:21 -07:00

go/build: put a space between 'generated by make' and package statement

This prevents the message from showing up in godoc.

R=rsc
CC=golang-dev
https://golang.org/cl/5610046
This commit is contained in:
Andrew Gerrand 2012-02-02 08:52:22 +11:00
parent 71c19b610f
commit 55779917f3
2 changed files with 2 additions and 3 deletions

View File

@ -4,6 +4,7 @@
syslist.go: ../../../Make.inc Makefile
echo '// Generated automatically by make.' >$@
echo >>$@
echo 'package build' >>$@
echo >>$@
echo 'const goosList = "$(GOOS_LIST)"' >>$@

View File

@ -1,6 +1,4 @@
// Copyright 2011 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Generated automatically by make.
package build