aboutsummaryrefslogtreecommitdiff
path: root/m4/ax_prog_doxygen.m4
diff options
context:
space:
mode:
authorJerin Jacob <jerinj@marvell.com>2020-09-07 14:53:54 +0530
committerPetri Savolainen <petri.savolainen@nokia.com>2020-09-08 16:09:32 +0300
commit6c5b5e05adad38e9fc42f5ff792c71cd3f793af4 (patch)
tree072c4c18b2cac8f08c3792f459c4e9fc896d3773 /m4/ax_prog_doxygen.m4
parente39b3a9171696992a8c1a510f0cdf78d94c87d7a (diff)
doc: fix doxygen warnings
Fix doxygen warning due to invalid PAPER_TYPE value. Based on doxygen 1.8.20 documentation https://www.doxygen.nl/manual/config.html#cfg_paper_type 'a4wide' is not valid paper type. $ make doxygen-doc DXGEN doc/application-api-guide/Doxyfile warning: argument 'a4wide' for option PAPER_TYPE is not a valid enum value Using the default: a4! Signed-off-by: Jerin Jacob <jerinj@marvell.com> Reviewed-by: Matias Elo <matias.elo@nokia.com>
Diffstat (limited to 'm4/ax_prog_doxygen.m4')
-rw-r--r--m4/ax_prog_doxygen.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/ax_prog_doxygen.m4 b/m4/ax_prog_doxygen.m4
index ed1dc83b4..2758a5c23 100644
--- a/m4/ax_prog_doxygen.m4
+++ b/m4/ax_prog_doxygen.m4
@@ -24,7 +24,7 @@
# help (for MS users), 'CHI' for generating a separate .chi file by the
# .chm file, and 'MAN', 'RTF', 'XML', 'PDF' and 'PS' for the appropriate
# output formats. The environment variable DOXYGEN_PAPER_SIZE may be
-# specified to override the default 'a4wide' paper size.
+# specified to override the default 'a4' paper size.
#
# By default, HTML, PDF and PS documentation is generated as this seems to
# be the most popular and portable combination. MAN pages created by
@@ -363,13 +363,13 @@ fi
# Paper size for PS and/or PDF:
AC_ARG_VAR(DOXYGEN_PAPER_SIZE,
- [a4wide (default), a4, letter, legal or executive])
+ [a4(default), letter, legal or executive])
case "$DOXYGEN_PAPER_SIZE" in
#(
"")
AC_SUBST(DOXYGEN_PAPER_SIZE, "")
;; #(
-a4wide|a4|letter|legal|executive)
+a4|letter|legal|executive)
DX_ENV_APPEND(PAPER_SIZE, $DOXYGEN_PAPER_SIZE)
;; #(
*)