aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Chris O'Haver <cohaver@infoblox.com> 2018-10-10 09:39:31 -0400
committerGravatar GitHub <noreply@github.com> 2018-10-10 09:39:31 -0400
commit49c776df4cdd1948c9fedbb4ec4b313969d9dfa1 (patch)
tree6b38d8044528a36af186fec80f366cfa70f2e17d /Makefile
parent288aef5f2b459416bebaa71d0b9198d8dd23ad8b (diff)
downloadcoredns-49c776df4cdd1948c9fedbb4ec4b313969d9dfa1.tar.gz
coredns-49c776df4cdd1948c9fedbb4ec4b313969d9dfa1.tar.zst
coredns-49c776df4cdd1948c9fedbb4ec4b313969d9dfa1.zip
rename VERBOSE to be more generic (#2172)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e81a701d5..d37c77c76 100644
--- a/Makefile
+++ b/Makefile
@@ -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