projects
/
vboot-utils.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d67b697
)
Try to fix building on arm64
author
Sophie Brun
<sophie@freexian.com>
Mon, 10 Feb 2020 15:21:52 +0000
(16:21 +0100)
committer
Sophie Brun
<sophie@offensive-security.com>
Tue, 1 Dec 2020 09:59:21 +0000
(09:59 +0000)
Origin: https://bugs.kali.org/view.php?id=3172
Last-Update: 2016-05-20
Last-Update: 2016-05-20
Gbp-Pq: Name 0008-fix-building-on-arm64.patch
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index 9e64fd73655f70a4b7c7153b6b245877dbe5a87a..fa0d5129d510f1238fb28ada456409a7dd641c72 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-87,6
+87,9
@@
_machname := $(shell uname -m)
ifneq (,$(findstring arm,${_machname}))
override _machname := arm
endif
+ifneq (,$(findstring aarch64,${_machname}))
+ override _machname := arm
+endif
ifneq (,$(findstring i686,${_machname}))
override _machname := x86
endif