Package: vboot-utils / 0~R63-10032.B-3

0008-fix-building-on-arm64.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Description: Try to fix building on arm64
Author: Steev Klimaszewski
Origin: https://bugs.kali.org/view.php?id=3172
Last-Update: 2016-05-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- 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