summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Warsaw2016-11-25 15:48:32 +0000
committerBarry Warsaw2016-11-25 15:48:32 +0000
commit1677387fae8d62fc930c2c4f481c502e287cc743 (patch)
tree7ae751a03d70304610f52e9d3ecba85cda251e5b
parent2691956ab9a5eb6de046b067e3dfb7150ade5853 (diff)
parentdb0fa111a30a372adf690a567df74a776adc4bb3 (diff)
downloadmailman-1677387fae8d62fc930c2c4f481c502e287cc743.tar.gz
mailman-1677387fae8d62fc930c2c4f481c502e287cc743.tar.zst
mailman-1677387fae8d62fc930c2c4f481c502e287cc743.zip
Merge branch 'fixdocbuild' into 'master'
Fix sphinx-build for output formats "man" and "latex". The current version of conf.py use source "index" for the manpage and Latex-output. This source does not exist. This commit fixes the build by using the source "README". See merge request !216
-rw-r--r--conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/conf.py b/conf.py
index 5100c63dd..e28627fe6 100644
--- a/conf.py
+++ b/conf.py
@@ -182,7 +182,7 @@ htmlhelp_basename = 'GNUMailmandoc'
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
- ('index', 'GNUMailman.tex', u'GNU Mailman Documentation',
+ ('README', 'GNUMailman.tex', u'GNU Mailman Documentation',
u'Barry Warsaw', 'manual'),
]
@@ -215,7 +215,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
- ('index', 'gnumailman', u'GNU Mailman Documentation',
+ ('README', 'gnumailman', u'GNU Mailman Documentation',
[u'Barry Warsaw'], 1)
]