]> Cypherpunks repositories - gostls13.git/commitdiff
Make.inc: fix build for tiny.
authorRob Pike <r@golang.org>
Thu, 9 Sep 2010 05:14:38 +0000 (15:14 +1000)
committerRob Pike <r@golang.org>
Thu, 9 Sep 2010 05:14:38 +0000 (15:14 +1000)
Suggested by paulzhol@gmail.com

R=rsc
CC=golang-dev
https://golang.org/cl/2122049

src/Make.inc

index 9797dc942170e7ea773dc8db2be4ecb8c02e4f61..533f3b039b2ddca2c310c2ffd4164facdca266f1 100644 (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),)