From 4a40f2fbbca76185fd420042e98f6801587cbaa8 Mon Sep 17 00:00:00 2001 From: Sean Young <sean.young@monax.io> Date: Mon, 25 Jun 2018 18:01:52 +0100 Subject: [PATCH] Don't run protoc during regular build protoc might not be available. Signed-off-by: Sean Young <sean.young@monax.io> --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bf0faf06..1d51945e 100644 --- a/Makefile +++ b/Makefile @@ -94,7 +94,7 @@ reinstall_vendor: erase_vendor # delete the vendor directy and pull back using dep lock and constraints file # will exit with an error if the working directory is not clean (any missing files or new # untracked ones) -.PHONY: ensure_vendor +.PHONY: ensure_vendor protobuf ensure_vendor: reinstall_vendor @scripts/is_checkout_dirty.sh @@ -120,7 +120,7 @@ build_race: check build_race_db build_race_client # build burrow .PHONY: build_db -build_db: commit_hash protobuf +build_db: commit_hash go build -ldflags "-extldflags '-static' \ -X github.com/hyperledger/burrow/project.commit=$(shell cat commit_hash.txt)" \ -o ${REPO}/bin/burrow ./cmd/burrow -- GitLab