From a4f90454f8b8c385efedb60d27a22ed39ca60090 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 15 Jun 2016 04:05:01 -0400 Subject: [PATCH] Fix typos in HAVE_LDGOLD and HAVE_ARM_NEON --- cryptest.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cryptest.sh b/cryptest.sh index 5dc89f77..2c638efd 100755 --- a/cryptest.sh +++ b/cryptest.sh @@ -217,7 +217,7 @@ HAVE_ARM_NEON=0 if [ "$IS_ARM32" -ne "0" ] || [ "$IS_ARM64" -ne "0" ]; then $CXX -DCRYPTOPP_ADHOC_MAIN -march=armv7a -mfpu=neon adhoc.cpp -o $TMP/adhoc.exe > /dev/null 2>&1 if [ "$?" -eq "0" ]; then - HAVE_ARM_CRYPTO=1 + HAVE_ARM_NEON=1 fi fi @@ -262,7 +262,7 @@ if [ "$IS_X86" -ne "0" ] || [ "$IS_X64" -ne "0" ]; then fi # LD-Gold linker testing -HAVE_LDGOLD=$(file `which ld.gold` 2>&1 | cut -d":" -f 2 | $(EGREP) -i -c "elf") +HAVE_LDGOLD=$(file `which ld.gold` 2>&1 | cut -d":" -f 2 | $EGREP -i -c "elf") # Set to 0 if you don't have Valgrind. Valgrind tests take a long time... HAVE_VALGRIND=$(which valgrind 2>&1 | $GREP -v "no valgrind" | $GREP -i -c valgrind)