mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
AC_CHECK_PROGS fix to recognize multiple assemblers.
This commit is contained in:
parent
4f1adeaec4
commit
bb45b97d79
|
|
@ -69,8 +69,8 @@ AC_ARG_ENABLE(
|
|||
)
|
||||
|
||||
if test x"$ASM" = x"yes"; then
|
||||
AC_CHECK_PROG( ASM_PROG, nasm, nasm, no ) # fix to set ASM_PROG to nasm, not yes.
|
||||
if test x"$ASM_PROG" = x"no "; then
|
||||
AC_CHECK_PROGS( ASM_PROG, nasm yasm, no, ) # fix to set ASM_PROG to nasm or yasm
|
||||
if test x"$ASM_PROG" = x"no"; then
|
||||
ASM=no
|
||||
fi
|
||||
fi
|
||||
|
|
|
|||
Loading…
Reference in a new issue