mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
doc: exclude notmuch-emacs.rst if emacs is not present.
This will still generate a warning about an excluded document in the toctree, but it cuts down on the noise quite a lot.
This commit is contained in:
parent
e4a8d6e2a4
commit
40b025c5f1
2 changed files with 6 additions and 1 deletions
|
@ -4,7 +4,7 @@ dir := doc
|
|||
|
||||
# You can set these variables from the command line.
|
||||
SPHINXOPTS := -q
|
||||
SPHINXBUILD = sphinx-build
|
||||
SPHINXBUILD = HAVE_EMACS=${HAVE_EMACS} sphinx-build
|
||||
DOCBUILDDIR := $(dir)/_build
|
||||
|
||||
# Internal variables.
|
||||
|
|
|
@ -29,6 +29,11 @@ release = version
|
|||
# directories to ignore when looking for source files.
|
||||
exclude_patterns = ['_build']
|
||||
|
||||
# If we don't have emacs, don't build the notmuch-emacs docs, as they need
|
||||
# emacs to generate the docstring include files
|
||||
if os.environ.get('HAVE_EMACS') != '1':
|
||||
exclude_patterns.append('notmuch-emacs.rst')
|
||||
|
||||
# The name of the Pygments (syntax highlighting) style to use.
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
|
|
Loading…
Reference in a new issue