Skip to content

Commit

Permalink
Set option to correct text
Browse files Browse the repository at this point in the history
  • Loading branch information
byrnHDF committed Oct 18, 2023
1 parent ca9bd7b commit 2262def
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1220,9 +1220,15 @@ AC_MSG_CHECKING([if doxygen warnings as errors is enabled])

AC_ARG_ENABLE([doxygen-errors],
[AS_HELP_STRING([--enable-doxygen-errors],
[Error on HDF5 doxygen warnings [default=yes]])],
[HDF5_DOXY_WARNINGS=$enableval])
[default=yes]])],
[DOXY_ERR=$enableval], [DOXY_ERR=yes])

if test "X$DOXY_ERR" = "Xyes"; then
HDF5_DOXY_WARNINGS="FAIL_ON_WARNINGS"
else
HDF5_DOXY_WARNINGS="NO"

fi
AC_MSG_RESULT([$HDF5_DOXY_WARNINGS])

if test "X$HDF5_DOXYGEN" = "Xyes"; then
Expand Down

0 comments on commit 2262def

Please sign in to comment.