mirror of
https://github.com/intel/isa-l.git
synced 2024-12-12 17:33:50 +01:00
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:
parent
9be74b389f
commit
81c8c823cd
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user