aboutsummaryrefslogtreecommitdiffstats
path: root/package/devel/valgrind/patches/130-fix_arm_arch_detection.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@nbd.name>2016-07-05 10:08:59 +0200
committerFelix Fietkau <nbd@nbd.name>2016-07-07 10:57:45 +0200
commitbcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e (patch)
treed81968c5adcaf945b51cc429d7cd0b9d1aaace66 /package/devel/valgrind/patches/130-fix_arm_arch_detection.patch
parent01fc738b46c0df35b41806c99f32d132743dbe59 (diff)
downloadupstream-bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e.tar.gz
upstream-bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e.tar.bz2
upstream-bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e.zip
valgrind: update to the latest version, fix build issues on ARM
Signed-off-by: Felix Fietkau <nbd@nbd.name>
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"
+ ;;