Set default nm tool if $NM is not defined.

This commit is contained in:
Martin Whitaker 2020-08-06 23:41:32 +01:00
parent 9d15b771b1
commit a5b3c0483a
1 changed files with 4 additions and 0 deletions

View File

@ -54,6 +54,10 @@ then
exit 1
fi
if test "x$NM" = "x"; then
NM=nm
fi
AC_EXEEXT
AC_SUBST(EXEEXT)