Skip to content

Commit

Permalink
makefile: fix for detecting linux arch
Browse files Browse the repository at this point in the history
Signed-off-by: markoburcul <[email protected]>
  • Loading branch information
markoburcul committed Dec 2, 2024
1 parent 223cfc2 commit ce38490
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 @@ -48,7 +48,7 @@ ifeq ($(OS),Windows_NT)
ARCH = arm64
endif
else
UNAME_P := $(shell uname -p)
UNAME_P := $(shell uname -m)
ifneq ($(filter $(UNAME_P), i686 i386 x86_64),)
ARCH = x86_64
endif
Expand Down

0 comments on commit ce38490

Please sign in to comment.