diff options
author | 2018-10-10 09:39:31 -0400 | |
---|---|---|
committer | 2018-10-10 09:39:31 -0400 | |
commit | 49c776df4cdd1948c9fedbb4ec4b313969d9dfa1 (patch) | |
tree | 6b38d8044528a36af186fec80f366cfa70f2e17d /Makefile | |
parent | 288aef5f2b459416bebaa71d0b9198d8dd23ad8b (diff) | |
download | coredns-49c776df4cdd1948c9fedbb4ec4b313969d9dfa1.tar.gz coredns-49c776df4cdd1948c9fedbb4ec4b313969d9dfa1.tar.zst coredns-49c776df4cdd1948c9fedbb4ec4b313969d9dfa1.zip |
rename VERBOSE to be more generic (#2172)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,7 +3,7 @@ GITCOMMIT:=$(shell git describe --dirty --always) BINARY:=coredns SYSTEM:= CHECKS:=check godeps -VERBOSE:=-v +BUILDOPTS:=-v GOPATH?=$(HOME)/go PRESUBMIT:=core coremain plugin test request MAKEPWD:=$(dir $(realpath $(firstword $(MAKEFILE_LIST)))) @@ -13,7 +13,7 @@ all: coredns .PHONY: coredns coredns: $(CHECKS) - CGO_ENABLED=$(CGO_ENABLED) $(SYSTEM) go build $(VERBOSE) -ldflags="-s -w -X github.com/coredns/coredns/coremain.GitCommit=$(GITCOMMIT)" -o $(BINARY) + CGO_ENABLED=$(CGO_ENABLED) $(SYSTEM) go build $(BUILDOPTS) -ldflags="-s -w -X github.com/coredns/coredns/coremain.GitCommit=$(GITCOMMIT)" -o $(BINARY) .PHONY: check check: presubmit core/zplugin.go core/dnsserver/zdirectives.go godeps |