diff options
author | Felix Fietkau <nbd@nbd.name> | 2016-07-05 10:08:59 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@nbd.name> | 2016-07-07 10:57:45 +0200 |
commit | bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e (patch) | |
tree | d81968c5adcaf945b51cc429d7cd0b9d1aaace66 /package/devel/valgrind/patches/130-fix_arm_arch_detection.patch | |
parent | 01fc738b46c0df35b41806c99f32d132743dbe59 (diff) | |
download | mtk-20170518-bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e.zip mtk-20170518-bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e.tar.gz mtk-20170518-bcb1d9399f8ee1028f6573ec4c8c5b9c1940ae0e.tar.bz2 |
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.patch | 17 |
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 0000000..c8d2033 --- /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" + ;; |