Skip to content

Commit

Permalink
Makefile: correct uname for arm64 (aarch64)
Browse files Browse the repository at this point in the history
Signed-off-by: Cedric Hombourger <[email protected]>
  • Loading branch information
chombourger committed Jun 24, 2023
1 parent 03d6045 commit a4ac4c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export PATH := $(TOOLPATH)/bin:$(GOROOT)/bin:$(PATH)
ifeq ($(UNAME),x86_64)
ARCH = amd64
else
ifeq ($(UNAME),arm64)
ifeq ($(UNAME),aarch64)
ARCH = arm64
endif
endif
Expand Down

0 comments on commit a4ac4c7

Please sign in to comment.