From a24cce21d2dce3f3e1d3220b84c7fcb3f2fa9cff Mon Sep 17 00:00:00 2001 From: Daniil Lashin Date: Mon, 22 Oct 2018 13:16:49 +0300 Subject: [PATCH] Fix makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a156796d9..fc518c872 100644 --- a/Makefile +++ b/Makefile @@ -13,10 +13,10 @@ check: check_tools ensure_deps ### Build build: - CGO_ENABLED=1 go build --race $(BUILD_FLAGS) -tags '$(BUILD_TAGS)' -o build/minter ./cmd/minter/ + CGO_ENABLED=1 go build $(BUILD_FLAGS) -tags '$(BUILD_TAGS)' -o build/minter ./cmd/minter/ install: - CGO_ENABLED=0 go install $(BUILD_FLAGS) -tags '$(BUILD_TAGS)' ./cmd/minter + CGO_ENABLED=1 go install $(BUILD_FLAGS) -tags '$(BUILD_TAGS)' ./cmd/minter ########################################