diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-26 17:51:06 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-26 17:51:06 +0200 |
commit | a15a7552f9f67c4e402f5d2967324e0ccfd6fccc (patch) | |
tree | af3c4739aca36eb50ec2d02221ea9ee7f754bad4 /configure.ac | |
parent | tuklib_physmem: Check for __has_warning before GCC version. (diff) | |
download | xz-a15a7552f9f67c4e402f5d2967324e0ccfd6fccc.tar.xz |
Build: Avoid different quoting style in --enable-doxygen doc.
Diffstat (limited to '')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac index fd817909..5ad55898 100644 --- a/configure.ac +++ b/configure.ac @@ -533,10 +533,10 @@ AM_CONDITIONAL([COND_DOC], [test x$enable_doc != xno]) # internals of xz and liblzma. AC_ARG_ENABLE([doxygen], [AS_HELP_STRING([--enable-doxygen=SCOPE], - [Doxygen SCOPE can be `all`, or `api`. - The default is `api`, which will generate doxygen html - for liblzma API. The `all` option will generate doxygen - html for every .c and .h file.])], + [Doxygen SCOPE can be `all', or `api'. + The default is `api', which will generate doxygen html + for liblzma API. The `all' option will generate doxygen + html for every .c and .h file.])], [], [enable_doxygen=api]) case $enable_doxygen in api) @@ -550,7 +550,7 @@ case $enable_doxygen in doxygen_input_path=src ;; *) - AC_MSG_ERROR([--enable-doxygen only accepts `all` or `api]) + AC_MSG_ERROR([--enable-doxygen only accepts `all' or `api']) ;; esac |