configure.ac: Correct simplification changes

This commit is contained in:
Kim Woelders 2022-01-04 09:34:12 +01:00
parent 564334d708
commit c109324bbf
1 changed files with 2 additions and 3 deletions

View File

@ -34,9 +34,8 @@ AC_DEFUN([EC_LOADER_CHECK], [
m4_pushdef([NMUP], m4_toupper([$1]))
AC_MSG_CHECKING([whether to enable NMUP support])
AC_ARG_WITH([NMDN],
[AS_HELP_STRING([--without-NMDN], [Disable NMUP loader])],
[ ifelse([$withval], [no], [ NMDN[]_loader="no" ], [ NMDN[]_loader="yes" ]) ],
[ NMDN[]_loader=$2 ]
AS_HELP_STRING([--without-NMDN], [Disable NMUP loader]),
[ NMDN[]_loader="$withval" ], [ NMDN[]_loader="$2" ]
)
AC_MSG_RESULT($NMDN[]_loader)