diff options
| author | Barry Warsaw | 2016-11-25 15:48:32 +0000 |
|---|---|---|
| committer | Barry Warsaw | 2016-11-25 15:48:32 +0000 |
| commit | 1677387fae8d62fc930c2c4f481c502e287cc743 (patch) | |
| tree | 7ae751a03d70304610f52e9d3ecba85cda251e5b | |
| parent | 2691956ab9a5eb6de046b067e3dfb7150ade5853 (diff) | |
| parent | db0fa111a30a372adf690a567df74a776adc4bb3 (diff) | |
| download | mailman-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) ] |
