From cfaa1610c77634cd6aca4ca02b872a4e7374e4b3 Mon Sep 17 00:00:00 2001 From: Bensuperpc Date: Thu, 17 Jun 2021 11:29:14 +0200 Subject: [PATCH] Fix build fail Fix build fail Signed-off-by: Bensuperpc --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2284e1f..d406872 100644 --- a/Makefile +++ b/Makefile @@ -30,8 +30,8 @@ TAG := $(shell date '+%Y%m%d')-$(shell git rev-parse --short HEAD) DATE_FULL := $(shell date -u +"%Y-%m-%dT%H:%M:%SZ") UUID := $(shell cat /proc/sys/kernel/random/uuid) VERSION := 1.0.0 - -ARCH_LIST := linux/amd64 linux/arm64 linux/386 linux/arm/v7 linux/arm/v6 linux/s390x linux/ppc64le +#Disable linux/ppc64le +ARCH_LIST := linux/amd64 linux/arm64 linux/386 linux/arm/v7 linux/arm/v6 linux/s390x comma:= , COM_ARCH_LIST:= $(subst $() $(),$(comma),$(ARCH_LIST))