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:
9e58d8c
)
Try to fix building on arm64
author
Sophie Brun
<sophie@freexian.com>
Fri, 2 Sep 2016 13:09:03 +0000
(14:09 +0100)
committer
Sophie Brun
<sophie@freexian.com>
Fri, 2 Sep 2016 13:09:03 +0000
(14:09 +0100)
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 4729b255b69196109c889ee3d8c0e7bbd6c5ddc4..c055b4de8b944e1e66ce4a31a2fefa538299f406 100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-96,6
+96,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