summaryrefslogtreecommitdiff
path: root/package/valgrind
diff options
context:
space:
mode:
authorerico.nunes <erico.nunes@datacom.ind.br>2015-04-13 16:53:24 -0300
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2015-04-13 22:23:38 +0200
commitcb9ae52e2375f988d4c72e73041eeb21f2530b02 (patch)
treec641da58c5923d07f6f50bc4daeb57d670b11933 /package/valgrind
parentb37f428bacdca7859fb0b678ec9658cbccaa359a (diff)
valgrind: Fix powerpc64le arch config name
buildroot references powerpc64 little endian as "powerpc64le" and not "powerpc64el". The typo in the supported architectures list caused this package to be unavailable for powerpc64 little endian. Signed-off-by: Erico Nunes <erico.nunes@datacom.ind.br> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/valgrind')
-rw-r--r--package/valgrind/Config.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/valgrind/Config.in b/package/valgrind/Config.in
index d9116dd38..8da007b86 100644
--- a/package/valgrind/Config.in
+++ b/package/valgrind/Config.in
@@ -2,7 +2,7 @@ config BR2_PACKAGE_VALGRIND
bool "valgrind"
depends on BR2_ARM_CPU_ARMV7A || BR2_i386 || \
BR2_mips || BR2_mipsel || BR2_mips64 || BR2_mips64el || \
- BR2_powerpc || BR2_powerpc64 || BR2_powerpc64el || \
+ BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le || \
BR2_x86_64
help
Tool for debugging and profiling Linux programs.