From b02adffd4ad9d64f80f43fd62fff9801c3ecf1bd Mon Sep 17 00:00:00 2001 From: "Peter D. Barnes, Jr." Date: Mon, 22 Jan 2018 17:25:15 -0800 Subject: [PATCH] [doxy] Speed up doxygen.warnings.report.sh run --- doc/.gitignore | 1 + doc/doxygen.conf | 2 +- doc/doxygen.warnings.report.sh | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/.gitignore b/doc/.gitignore index 6d61d70ab..2b4b76d19 100644 --- a/doc/.gitignore +++ b/doc/.gitignore @@ -1,4 +1,5 @@ html/ +html-warn/ latex/ ns3-object.txt introspected-doxygen.h diff --git a/doc/doxygen.conf b/doc/doxygen.conf index 12a9a5702..b0c489db7 100644 --- a/doc/doxygen.conf +++ b/doc/doxygen.conf @@ -2180,7 +2180,7 @@ HIDE_UNDOC_RELATIONS = YES # set to NO # The default value is: NO. -HAVE_DOT = yes +HAVE_DOT = YES # The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed # to run in parallel. When set to 0 doxygen will base this on the number of diff --git a/doc/doxygen.warnings.report.sh b/doc/doxygen.warnings.report.sh index 4759a6937..1901e4942 100755 --- a/doc/doxygen.warnings.report.sh +++ b/doc/doxygen.warnings.report.sh @@ -213,7 +213,7 @@ else conf=$DIR/doxygen.conf - sed -i.bak -E '/^(EXTRACT_ALL|HAVE_DOT|CLASS_DIAGRAMS|WARNINGS|SOURCE_BROWSER) /s/YES/no/;/^HTML_OUTPUT /s/html/html-warn/' $conf + sed -i.bak -E '/^(EXTRACT_ALL|HAVE_DOT|CLASS_DIAGRAMS|WARNINGS|SOURCE_BROWSER) /s/(YES|yes)/no/;/^HTML_OUTPUT /s/html/html-warn/' $conf verbose -n "Rebuilding doxygen (v$(doxygen --version)) docs with full errors..." (cd "$ROOT" && ./waf --doxygen-no-build >&6 2>&6 )