From 3735cf7b09e029bb04995d082eeee12ff5834a80 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 16 Jan 2012 17:49:58 -0500 Subject: [PATCH] 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 --- src/pkg/exp/terminal/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.0