Fix arch name in deb/rpm builds (#7877)

This commit is contained in:
Daniel Nelson 2020-07-22 14:59:48 -07:00 committed by GitHub
parent 3f15a0f0f5
commit 72dec1b9c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -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):