]> Cypherpunks repositories - gostls13.git/commitdiff
exp/terminal: fix Makefile formatting for deps.bash
authorDmitriy Vyukov <dvyukov@google.com>
Fri, 18 Nov 2011 12:30:36 +0000 (15:30 +0300)
committerDmitriy Vyukov <dvyukov@google.com>
Fri, 18 Nov 2011 12:30:36 +0000 (15:30 +0300)
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

src/pkg/exp/terminal/Makefile

index 24bf7ad75d0b2af4d0953eff5081f95e438084ac..96fe9100204799f0d5b824d02a669f2a9c3aadb5 100644 (file)
@@ -9,7 +9,8 @@ GOFILES=\
        terminal.go\
 
 ifneq ($(GOOS),windows)
-GOFILES+=util.go
+GOFILES+=\
+       util.go
 endif
 
 include ../../../Make.pkg