summaryrefslogtreecommitdiffstats
path: root/package/devel/valgrind/patches/130-fix_arm_arch_detection.patch
diff options
context:
space:
mode:
Diffstat (limited to 'package/devel/valgrind/patches/130-fix_arm_arch_detection.patch')
-rw-r--r--package/devel/valgrind/patches/130-fix_arm_arch_detection.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/package/devel/valgrind/patches/130-fix_arm_arch_detection.patch b/package/devel/valgrind/patches/130-fix_arm_arch_detection.patch
new file mode 100644
index 0000000000..c8d203390c
--- /dev/null
+++ b/package/devel/valgrind/patches/130-fix_arm_arch_detection.patch
@@ -0,0 +1,17 @@
+Description: Fix FTBFS on armhf by correctly detecting the architecture
+Origin: vendor
+Bug-Debian: http://bugs.debian.org/730844
+Author: Alessandro Ghedini <ghedo@debian.org>
+Last-Update: 2013-11-30
+
+--- a/configure.ac
++++ b/configure.ac
+@@ -234,7 +234,7 @@ case "${host_cpu}" in
+ ARCH_MAX="s390x"
+ ;;
+
+- armv7*)
++ arm*)
+ AC_MSG_RESULT([ok (${host_cpu})])
+ ARCH_MAX="arm"
+ ;;