Commit 55779917 authored by Andrew Gerrand's avatar Andrew Gerrand

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
parent 71c19b61
......@@ -4,6 +4,7 @@
syslist.go: ../../../Make.inc Makefile
echo '// Generated automatically by make.' >$@
echo >>$@
echo 'package build' >>$@
echo >>$@
echo 'const goosList = "$(GOOS_LIST)"' >>$@
......
// 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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment