From: Sophie Brun Date: Tue, 6 Feb 2018 15:29:11 +0000 (+0000) Subject: Try to fix building on arm64 X-Git-Tag: archive/raspbian/0_R99-14469.B-2+rpi1~1^2^2^2~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=447136e9afab5d1f9d36b2f14bac42a8e558994d;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 c35198e..899af0b 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