Skip to content

Commit

Permalink
Merge pull request influxdata#13 from influxdb/make-update
Browse files Browse the repository at this point in the history
Fixed minor quote issue around linker flags.
  • Loading branch information
Nathaniel Cook committed Oct 22, 2015
2 parents ce873f8 + de03602 commit 970016d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ OS_ARCH=linux/amd64 darwin/amd64 windows/amd64
LDFLAGS=-X main.version=$(VERSION) -X main.branch=$(BRANCH) -X main.commit=$(COMMIT)

build: prepare
$(GO) build -o kapacitor -ldflags=$(LDFLAGS) \
$(GO) build -o kapacitor -ldflags="$(LDFLAGS)" \
./cmd/kapacitor/main.go
$(GO) build -o kapacitord -ldflags=$(LDFLAGS) \
$(GO) build -o kapacitord -ldflags="$(LDFLAGS)" \
./cmd/kapacitord/main.go

dist: prepare
Expand Down

0 comments on commit 970016d

Please sign in to comment.