From: Russ Cox Date: Mon, 16 Jan 2012 22:49:58 +0000 (-0500) Subject: exp/terminal: fix build on non-Linux using Makefiles X-Git-Tag: weekly.2012-01-20~95 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3735cf7b09e029bb04995d082eeee12ff5834a80;p=gostls13.git exp/terminal: fix build on non-Linux using Makefiles The Makefiles will go away soon. R=agl CC=golang-dev https://golang.org/cl/5544081 --- diff --git a/src/pkg/exp/terminal/Makefile b/src/pkg/exp/terminal/Makefile index 96fe910020..7f702efe36 100644 --- a/src/pkg/exp/terminal/Makefile +++ b/src/pkg/exp/terminal/Makefile @@ -8,7 +8,7 @@ TARG=exp/terminal GOFILES=\ terminal.go\ -ifneq ($(GOOS),windows) +ifeq ($(GOOS),linux) GOFILES+=\ util.go endif