1
0
mirror of https://github.com/golang/go synced 2024-11-21 22:24:40 -07:00

Make.inc: fix build for tiny.

Suggested by paulzhol@gmail.com

R=rsc
CC=golang-dev
https://golang.org/cl/2122049
This commit is contained in:
Rob Pike 2010-09-09 15:14:38 +10:00
parent c4e27b7cfb
commit e56c0555da

View File

@ -22,9 +22,10 @@ ifeq ($(GOOS),darwin)
else ifeq ($(GOOS),freebsd)
else ifeq ($(GOOS),linux)
else ifeq ($(GOOS),nacl)
else ifeq ($(GOOS),tiny)
else ifeq ($(GOOS),windows)
else
$(error Invalid $$GOOS '$(GOOS)'; must be darwin, freebsd, linux, nacl, or windows)
$(error Invalid $$GOOS '$(GOOS)'; must be darwin, freebsd, linux, nacl, tiny, or windows)
endif
ifeq ($(GOARCH),)