aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Vyukov <dvyukov@google.com>2011-11-18 15:30:36 +0300
committerDmitriy Vyukov <dvyukov@google.com>2011-11-18 15:30:36 +0300
commit151bcb11a8fe353530d614adcffa1f3ee2099ba4 (patch)
treedb9eec0df4d49cf1506e14de72df629f8aab88c1
parent5ca38eda49119804d790b70a11f884f72a9e26bd (diff)
downloadgo-151bcb11a8fe353530d614adcffa1f3ee2099ba4.tar.gz
go-151bcb11a8fe353530d614adcffa1f3ee2099ba4.zip
exp/terminal: fix Makefile formatting for deps.bash
deps.bash does not understand current format, so make.bash fails (with MAKEFLAGS=-j20). R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5410046
-rw-r--r--src/pkg/exp/terminal/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pkg/exp/terminal/Makefile b/src/pkg/exp/terminal/Makefile
index 24bf7ad75d..96fe910020 100644
--- a/src/pkg/exp/terminal/Makefile
+++ b/src/pkg/exp/terminal/Makefile
@@ -9,7 +9,8 @@ GOFILES=\
terminal.go\
ifneq ($(GOOS),windows)
-GOFILES+=util.go
+GOFILES+=\
+ util.go
endif
include ../../../Make.pkg