Skip to content

Commit

Permalink
Fix arch name in deb/rpm builds (#7877)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnelson authored Jul 22, 2020
1 parent 3f15a0f commit 72dec1b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down Expand Up @@ -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):
Expand Down

0 comments on commit 72dec1b

Please sign in to comment.