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.
This commit is contained in:
Ashish Gandhi 2015-08-03 11:34:44 -07:00
parent 029ed626e6
commit 9912488b03
1 changed files with 11 additions and 11 deletions

View File

@ -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 ?= .