Commit cb9ae52e authored by erico.nunes's avatar erico.nunes Committed by Thomas Petazzoni
Browse files

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: default avatarErico Nunes <erico.nunes@datacom.ind.br>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent b37f428b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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.