From 9912488b03f00838389fa70089745aa9d7e2a9c1 Mon Sep 17 00:00:00 2001 From: Ashish Gandhi Date: Mon, 3 Aug 2015 11:34:44 -0700 Subject: [PATCH] Use spaces instead of tabs to align equals (=) Using tabs to align things has the downside that people who have set the tabstop to be of a different lenght than the orignial author's run the risk of not having the alignment stay. In the current Makefile before this change people with tabstop of 4 do not see the equals line up. --- Makefile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/Makefile b/Makefile index 5185359..a84d82d 100644 --- a/Makefile +++ b/Makefile @@ -32,17 +32,17 @@ endif # Never honor GOBIN, should it be set at all. unexport GOBIN -export GOARCH = $(subst x86_64,amd64,$(patsubst i%86,386,$(ARCH))) -export GOPKG = go$(GO_VERSION).$(GOOS)-$(GOARCH)$(RELEASE_SUFFIX).tar.gz -export GOURL = https://golang.org/dl -export GOROOT = $(BUILD_PATH)/root/go -export GOPATH = $(BUILD_PATH)/root/gopath -export GOCC = $(GOROOT)/bin/go -export TMPDIR = /tmp -export GOENV = TMPDIR=$(TMPDIR) GOROOT=$(GOROOT) GOPATH=$(GOPATH) -export GO = $(GOENV) $(GOCC) -export GOFMT = $(GOROOT)/bin/gofmt -export GODOC = $(GOENV) $(GOROOT)/bin/godoc +export GOARCH = $(subst x86_64,amd64,$(patsubst i%86,386,$(ARCH))) +export GOPKG = go$(GO_VERSION).$(GOOS)-$(GOARCH)$(RELEASE_SUFFIX).tar.gz +export GOURL = https://golang.org/dl +export GOROOT = $(BUILD_PATH)/root/go +export GOPATH = $(BUILD_PATH)/root/gopath +export GOCC = $(GOROOT)/bin/go +export TMPDIR = /tmp +export GOENV = TMPDIR=$(TMPDIR) GOROOT=$(GOROOT) GOPATH=$(GOPATH) +export GO = $(GOENV) $(GOCC) +export GOFMT = $(GOROOT)/bin/gofmt +export GODOC = $(GOENV) $(GOROOT)/bin/godoc BENCHMARK_FILTER ?= .