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 "armv7a",

Last-Update: 2023-10-06

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

diff --git a/configure.ac b/configure.ac
index 7a1634d..84665be 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,8 +37,8 @@ AS_CASE(["$host_cpu"],
   [*powerpc*], [
     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])
     ],
