From bb917c6386f8da0e4a5b7d1bfbc082424031c110 Mon Sep 17 00:00:00 2001 From: bzt Date: Sun, 28 May 2023 15:35:35 +0200 Subject: [PATCH] Fix if uname reports amd64 instead of x86_64 --- uefi/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uefi/Makefile b/uefi/Makefile index 1b99b66..c6acfea 100644 --- a/uefi/Makefile +++ b/uefi/Makefile @@ -1,5 +1,5 @@ # detect architecture -MYARCH = $(shell uname -m | sed s,i[3456789]86,ia32,) +MYARCH = $(shell uname -m | sed s,i[3456789]86,ia32, | sed s,amd,x86_,) ifeq ($(ARCH),) ARCH = $(MYARCH) endif