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-06 12:10:17 +0200
commit06dc49f35728bfdcf9cf15629e271626366fcbc1 (patch)
treeae4a29011afd8d1356982f45d6caeee9b4a9b432
parentca6246f895b1269548b26eb648b5a6af2f5c363b (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])
],