mirror of
https://gitlab.com/bztsrc/posix-uefi.git
synced 2024-12-28 06:55:08 +01:00
Fix if uname reports amd64 instead of x86_64
This commit is contained in:
parent
533591712d
commit
bb917c6386
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
||||||
# detect architecture
|
# 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),)
|
ifeq ($(ARCH),)
|
||||||
ARCH = $(MYARCH)
|
ARCH = $(MYARCH)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue