From: Dmitriy Vyukov Date: Fri, 18 Nov 2011 12:30:36 +0000 (+0300) Subject: exp/terminal: fix Makefile formatting for deps.bash X-Git-Tag: weekly.2011-11-18~6 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=151bcb11a8fe353530d614adcffa1f3ee2099ba4;p=gostls13.git 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 --- 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