From 94c4cc1e151d8c0a687704ccd40243ee7c6407d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs=20Benito=20Calzada?= Date: Thu, 17 Oct 2024 13:01:00 +0200 Subject: [PATCH] Fix error un makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jesús Benito Calzada --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f2151d092a47..d5a4fc607cdd 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ GO = /usr/bin/env go GOFMT = /usr/bin/env gofmt IMAGE_TAG ?= dev-$(shell date +%FT%H-%M-%S-%Z) VERSION ?= $$(git rev-parse HEAD) -TARGET_ARCHITECTURE ?= $(shell uname -m) +TARGET_ARCHITECTURE ?= amd64 SUPPORTED_ARCHITECTURES := amd64 arm64 riscv64 ppc64le s390x 386 arm/v7 arm/v6 ifeq ($(filter $(TARGET_ARCHITECTURE),$(SUPPORTED_ARCHITECTURES)),)