From: Pierre Blanc <pierreblanc75@gmail.com>
Date: Thu, 24 Aug 2023 14:42:39 +0200
Subject: Fix armhf support patch to look for "arm" instead of "armv7l",

Last-Update: 2012-12-02

since configure is looking at the triplet, not uname output.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index ede7d26..fe8fd40 100644
--- a/configure.ac
+++ b/configure.ac
@@ -27,7 +27,7 @@ AS_CASE(["$host_cpu"],
     AC_DEFINE([STRESSAPPTEST_CPU_PPC],[],
               [Defined if the target CPU is PowerPC])
     ], 
-  [*armv7a*], [
+  [*arm*], [
     AC_DEFINE([STRESSAPPTEST_CPU_ARMV7A],[],
               [Defined if the target CPU is armv7a])
     ], 
