Commit 666eb02b authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

toolchain/helpers.mk: fix check_glibc sysroot typo



Introduced by 68973cca (adjust logic to support Linaro 2012.05)

Reported-by: default avatarR Zhong <rzhong@hotmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 288b7399
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -196,7 +196,7 @@ check_glibc_feature = \
#
check_glibc = \
	SYSROOT_DIR="$(strip $1)"; \
	if test `find $${SYSDROOT_DIR}/lib/ -maxdepth 1 -name 'ld-linux*.so.*' -o -name 'ld.so.*' | wc -l` -eq 0 ; then \
	if test `find $${SYSROOT_DIR}/lib/ -maxdepth 1 -name 'ld-linux*.so.*' -o -name 'ld.so.*' | wc -l` -eq 0 ; then \
		echo "Incorrect selection of the C library"; \
		exit -1; \
	fi; \