mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 11:57:28 -03:00
build: consistently quote arguments in AM_CONDITIONAL()
This commit is contained in:
parent
cdb47e18b7
commit
e6749a4f99
1 changed files with 24 additions and 24 deletions
|
@ -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],
|
||||
|
|
Loading…
Reference in a new issue