Skip to content

Commit 6ea433d

Browse files
Minor improvement for makefile
1 parent 6656077 commit 6ea433d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ WINDOWS_ARCH_LIST = \
7373
%: ## Build binary, format: linux-amd64, darwin-arm64, full list: https://golang.org/doc/install/source#environment
7474
$(eval OS := $(shell echo $@ | cut -d'-' -f1))
7575
$(eval ARM := $(shell echo $@ | cut -d'-' -f2 | grep arm | sed -e 's/arm64//' | tr -dc '[0-9]'))
76-
$(eval ARCH := $(shell echo $@ | cut -d'-' -f2 | sed -e 's/armv.*/arm/'))
76+
$(eval ARCH := $(shell echo $@ | cut -d'-' -f2 | sed -e 's/armv.*/arm/' | grep -v $(OS)))
7777
$(eval MIPS := $(shell echo $@ | cut -d'-' -f3))
7878
$(if $(strip $(OS)),,$(error missing OS))
7979
$(if $(strip $(ARCH)),,$(error missing ARCH))

0 commit comments

Comments
 (0)