From: Sophie Brun Date: Fri, 2 Sep 2016 13:09:03 +0000 (+0100) Subject: Try to fix building on arm64 X-Git-Tag: archive/raspbian/0_R99-14469.B-2+rpi1~1^2^2^2^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=f96eb8293de09e294120c41641fe65524442b463;p=vboot-utils.git Try to fix building on arm64 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 --- diff --git a/Makefile b/Makefile index 4729b25..c055b4d 100644 --- 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