summaryrefslogtreecommitdiff
path: root/sphinx
diff options
context:
space:
mode:
authorTakeshi KOMIYA <i.tkomiya@gmail.com>2020-10-28 11:03:13 +0900
committerGitHub <noreply@github.com>2020-10-28 11:03:13 +0900
commit7eabbfc5ecdf52329672410f651880645074e215 (patch)
treeeb87598abf60ddaa8e5484a05ab2e4807742bf1a /sphinx
parentc40b4249cdc2a1d78ba6b92a0009bf1f942b68d4 (diff)
parenta843fd3db8b588be93b576049a8a291bc4b3ec9d (diff)
downloadsphinx-git-7eabbfc5ecdf52329672410f651880645074e215.tar.gz
Merge pull request #8284 from tk0miya/7996_man_make_section_directory_by_default
Close #7996: manpage: Make a section directory on build manpage by default
Diffstat (limited to 'sphinx')
-rw-r--r--sphinx/builders/manpage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py
index 2a10ba62f..442abb915 100644
--- a/sphinx/builders/manpage.py
+++ b/sphinx/builders/manpage.py
@@ -120,7 +120,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
app.add_config_value('man_pages', default_man_pages, None)
app.add_config_value('man_show_urls', False, None)
- app.add_config_value('man_make_section_directory', False, None)
+ app.add_config_value('man_make_section_directory', True, None)
return {
'version': 'builtin',