From: Russ Cox Date: Wed, 14 Dec 2011 15:24:17 +0000 (-0500) Subject: go/build: make compatible with go/build X-Git-Tag: weekly.2011-12-14~22 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=576311d72b53c6cec3f11d2fcc0dfd0d0eb76b7d;p=gostls13.git go/build: make compatible with go/build The irony! R=golang-dev, r CC=golang-dev https://golang.org/cl/5482062 --- diff --git a/src/pkg/go/build/Makefile b/src/pkg/go/build/Makefile index 349e00e801..1a18e00b88 100644 --- a/src/pkg/go/build/Makefile +++ b/src/pkg/go/build/Makefile @@ -11,7 +11,7 @@ GOFILES=\ path.go\ syslist.go\ -CLEANFILES+=syslist.go pkgtest/_obj cmdtest/_obj cgotest/_obj +CLEANFILES+=pkgtest/_obj cmdtest/_obj cgotest/_obj include ../../../Make.pkg diff --git a/src/pkg/go/build/syslist.go b/src/pkg/go/build/syslist.go new file mode 100644 index 0000000000..0ee9821322 --- /dev/null +++ b/src/pkg/go/build/syslist.go @@ -0,0 +1,5 @@ +// Generated automatically by make. +package build + +const goosList = "darwin freebsd linux netbsd openbsd plan9 windows " +const goarchList = "386 amd64 arm "