Fix configure to show "default=auto" for --enable-api-docs (#2190)

This fixes the discrepancy where configure --help shows "default=no"
but the api-docs are built anyway (only if dependencies are found).

The actual default is auto which is intended.

Fixes #2189
master
Andy Alt 2019-07-19 03:40:46 -05:00 committed by Thomas Martitz
parent 7e7e087901
commit 386d418c33
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ AC_DEFUN([GEANY_CHECK_DOXYGEN],
[
AC_ARG_ENABLE([api-docs],
[AS_HELP_STRING([--enable-api-docs],
[generate API documentation using Doxygen [default=no]])],
[generate API documentation using Doxygen [default=auto]])],
[geany_with_doxygen="$enableval"],
[geany_with_doxygen="auto"])