From 736d5f55608cbc3f9886d023913c8a27f956b79e Mon Sep 17 00:00:00 2001 From: Sophie Brun Date: Mon, 10 Feb 2020 16:21:52 +0100 Subject: [PATCH] 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 --- Makefile | 3 +++ 1 file changed, 3 insertions(+) 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 -- 2.30.2