Fix configure for a strict shell

The 'test ==' can give issues under some shells 'test =' is better.

Reported-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Signed-off-by: Greg Tucker <greg.b.tucker@intel.com>
This commit is contained in:
Greg Tucker 2017-01-20 16:04:47 -07:00
parent 9be74b389f
commit 81c8c823cd

View File

@ -88,7 +88,7 @@ else
fi
# Pick an assembler yasm or nasm
if test x"$AS" == x""; then
if test x"$AS" = x""; then
if test x"$yasm_knows_avx512" = x"yes"; then
AS=yasm
elif test x"$nasm_knows_avx512" = x"yes"; then