From 691adcd1fc151a39bd73927c6316787c605cd1ec Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 27 Mar 2022 11:14:23 +0200 Subject: [PATCH] makefile: add PACKAGER_NAME common variable Signed-off-by: CrazyMax --- common.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/common.mk b/common.mk index 834449945a..9c6b4fb56e 100644 --- a/common.mk +++ b/common.mk @@ -15,6 +15,7 @@ ARCHES:=amd64 aarch64 armhf armel s390x ppc64le BUILDTIME=$(shell date -u -d "@$${SOURCE_DATE_EPOCH:-$$(date +%s)}" --rfc-3339 ns 2> /dev/null | sed -e 's/ /T/') CHOWN:=docker run --rm -v $(CURDIR):/v -w /v alpine chown DEFAULT_PRODUCT_LICENSE:=Community Engine +PACKAGER_NAME?= DOCKER_GITCOMMIT:=abcdefg GO_VERSION:=1.17.8 PLATFORM=Docker Engine - Community @@ -42,4 +43,5 @@ DOCKER_COMPOSE_REF ?= v2.3.4 export BUILDTIME export DEFAULT_PRODUCT_LICENSE +export PACKAGER_NAME export PLATFORM