From 72dec1b9c15f35c93c5b1b7b8734a963d4ab39e3 Mon Sep 17 00:00:00 2001 From: Daniel Nelson Date: Wed, 22 Jul 2020 14:59:48 -0700 Subject: [PATCH] Fix arch name in deb/rpm builds (#7877) --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7347e7772..b387b9d4c 100644 --- a/Makefile +++ b/Makefile @@ -246,7 +246,7 @@ rpm_s390x := s390x rpm_arm5 := armel rpm_arm6 := armv6hl rpm_arm647 := aarch64 -rpm_arch := $(rpm_$(GOARCH)$(GOARM)) +rpm_arch = $(rpm_$(GOARCH)$(GOARM)) .PHONY: $(rpms) $(rpms): @@ -282,7 +282,9 @@ deb_s390x := s390x deb_arm5 := armel deb_arm6 := armhf deb_arm647 := arm64 -deb_arch := $(deb_$(GOARCH)$(GOARM)) +deb_mips := mips +deb_mipsle := mipsel +deb_arch = $(deb_$(GOARCH)$(GOARM)) .PHONY: $(debs) $(debs):