summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Blanc <pierreblanc75@gmail.com>2023-08-24 14:42:39 +0200
committerEmanuele Rocca <ema@debian.org>2023-10-08 10:26:45 +0200
commitda08a31cac6b6ff0cf86dcdeec3a83658d0a1000 (patch)
tree0a376fd2317341c6233d7cdc8e4c83e5e9527610
parenteba62571d282e90e92cb3d3f74a74561bf5f7acd (diff)
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. Gbp-Pq: Name armhf_support
-rw-r--r--configure.ac4
1 files 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])
],