Fix "make format".
This commit is contained in:
parent
71199e2c93
commit
235623b45d
2
Makefile
2
Makefile
|
@ -53,7 +53,7 @@ documentation: search_index
|
|||
godoc -http=:6060 -index -index_files='search_index'
|
||||
|
||||
format:
|
||||
find . -iname '*.go' | egrep -v "generated|\.(l|y)\.go" | xargs -n1 $(GOFMT) -w -s=true
|
||||
find . -iname '*.go' | egrep -v "^./build/|generated|\.(l|y)\.go" | xargs -n1 $(GOFMT) -w -s=true
|
||||
|
||||
model: dependencies preparation
|
||||
$(MAKE) -C model
|
||||
|
|
|
@ -38,7 +38,7 @@ GOCC = $(GOROOT)/bin/go
|
|||
TMPDIR = /tmp
|
||||
GOENV = TMPDIR=$(TMPDIR) GOROOT=$(GOROOT) GOPATH=$(GOPATH)
|
||||
GO = $(GOENV) $(GOCC)
|
||||
GOFMT = $(GOENV) $(GOROOT)/bin/gofmt
|
||||
GOFMT = $(GOROOT)/bin/gofmt
|
||||
|
||||
LEVELDB_VERSION := 1.9.0
|
||||
PROTOCOL_BUFFERS_VERSION := 2.5.0
|
||||
|
|
Loading…
Reference in New Issue