From: Sophie Brun Date: Mon, 10 Feb 2020 15:21:52 +0000 (+0100) Subject: Try to fix building on arm64 X-Git-Tag: archive/raspbian/0_R99-14469.B-2+rpi1~7 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=736d5f55608cbc3f9886d023913c8a27f956b79e;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 acb379d..6f13643 100644 --- a/Makefile +++ b/Makefile @@ -89,6 +89,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