Assume we are not generating man pages by default.
Set output_formats["MAN"] to "NO", by default, as suggested at http://www.scons.org/wiki/DoxygenBuilder#Note_added_by_Reinderien. Despite what the Doxygen docs say, GENERATE_MAN is off by default, and a browse of the source suggests that it's been that way since at least 2008 / Doxygen 1.5.7.
This commit is contained in:
parent
92cee51e2e
commit
0d12211c55
1 changed files with 1 additions and 1 deletions
|
|
@ -39,7 +39,7 @@ output_formats = {
|
|||
"HTML": ("YES", "html", "index", ".html", "HTML_FILE_EXTENSION"),
|
||||
"LATEX": ("YES", "latex", "refman", ".tex", ""),
|
||||
"RTF": ("NO", "rtf", "refman", ".rtf", ""),
|
||||
"MAN": ("YES", "man", "", ".3", "MAN_EXTENSION"),
|
||||
"MAN": ("NO", "man", "", ".3", "MAN_EXTENSION"),
|
||||
"XML": ("NO", "xml", "index", ".xml", ""),
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue