build: consistently quote arguments in AM_CONDITIONAL()

This commit is contained in:
fanquake 2021-11-09 14:07:02 +08:00
parent cdb47e18b7
commit e6749a4f99
No known key found for this signature in database
GPG key ID: 2EEB9F5CC09526C1

View file

@ -289,7 +289,7 @@ AC_ARG_ENABLE(man,
[AS_HELP_STRING([--disable-man],
[do not install man pages (default is to install)])],,
enable_man=yes)
AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no)
AM_CONDITIONAL([ENABLE_MAN], [test "$enable_man" != no])
dnl Enable debug
AC_ARG_ENABLE([debug],