From bf1fc8529f540aa7396227c8411b21186200bb34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Fri, 3 Jun 2022 18:59:21 +0200 Subject: [PATCH] build with Nix flake, pin GCC 11 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7b371732..689e43ab 100644 --- a/Makefile +++ b/Makefile @@ -31,8 +31,8 @@ else GOBIN_SHARED_LIB_CGO_LDFLAGS := CGO_LDFLAGS="-Wl,-soname,libgowaku.so.0" endif -GIT_COMMIT = $(shell git rev-parse --short HEAD) -VERSION = $(shell cat ./VERSION) +GIT_COMMIT ?= $(shell git rev-parse --short HEAD) +VERSION ?= $(shell cat ./VERSION) UID := $(shell id -u) GID := $(shell id -g)