From 151bcb11a8fe353530d614adcffa1f3ee2099ba4 Mon Sep 17 00:00:00 2001 From: Dmitriy Vyukov Date: Fri, 18 Nov 2011 15:30:36 +0300 Subject: [PATCH] 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 --- src/pkg/exp/terminal/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.50.0