Re: [patch #8452] Add AX_DEBUG_CHECK macro for --enable-debug option
Peter Johansson <[email protected]>
| Newsgroups | gmane.comp.sysutils.autoconf.archive-maintainers |
|---|---|
| Message-ID | <[email protected]> |
On 11/05/14 06:30, anonymous wrote: Hi, > AC_DEFUN([AX_DEBUG_CHECK],[ > AC_ARG_ENABLE([debug], > AS_HELP_STRING([--enable-debug], > [turn on debugging (default: no)]),, > [enable_debug=no]) > Underquoted. AS_HELP_STRING() should be quoted with []. Also it looks like enable_debug=no is an argument to AS_HELP_STRING. Can you please reformat so it's clear that it's an argument to AC_ARG_ENABLE. Cheers, Peter