1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Build: Avoid different quoting style in --enable-doxygen doc.

This commit is contained in:
Lasse Collin 2023-01-26 17:51:06 +02:00
parent af5a4bd5af
commit a15a7552f9

View file

@ -533,9 +533,9 @@ AM_CONDITIONAL([COND_DOC], [test x$enable_doc != xno])
# internals of xz and liblzma. # internals of xz and liblzma.
AC_ARG_ENABLE([doxygen], [AS_HELP_STRING([--enable-doxygen=SCOPE], AC_ARG_ENABLE([doxygen], [AS_HELP_STRING([--enable-doxygen=SCOPE],
[Doxygen SCOPE can be `all`, or `api`. [Doxygen SCOPE can be `all', or `api'.
The default is `api`, which will generate doxygen html The default is `api', which will generate doxygen html
for liblzma API. The `all` option will generate doxygen for liblzma API. The `all' option will generate doxygen
html for every .c and .h file.])], html for every .c and .h file.])],
[], [enable_doxygen=api]) [], [enable_doxygen=api])
case $enable_doxygen in case $enable_doxygen in
@ -550,7 +550,7 @@ case $enable_doxygen in
doxygen_input_path=src 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 esac