summaryrefslogtreecommitdiffstats
path: root/documentation/conf.py
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2020-09-15 17:13:18 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-09-17 10:09:35 +0100
commit0ce3f64fce7b6a9075abd306a7ef228d48a42035 (patch)
tree980f9c352a465c11fb4846e6351688b22f566f5c /documentation/conf.py
parentd072e879e578f1b175b4d7fcb909a40890ea252a (diff)
downloadpoky-0ce3f64fce7b6a9075abd306a7ef228d48a42035.tar.gz
sphinx: conf: exclude adt-manual/*.rst
The ADT Manual is deprecated, and was removed from the documentation set in 2.2, until we remove it completely, let's make sure it's excluded from Sphinx build. (From yocto-docs rev: 5fa20d6afb1be56cbb2a012357f8ccff4b91d585) Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/conf.py')
-rw-r--r--documentation/conf.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/documentation/conf.py b/documentation/conf.py
index e1a7e5e3dd..34d1bc97a4 100644
--- a/documentation/conf.py
+++ b/documentation/conf.py
@@ -53,7 +53,8 @@ templates_path = ['_templates']
53# List of patterns, relative to source directory, that match files and 53# List of patterns, relative to source directory, that match files and
54# directories to ignore when looking for source files. 54# directories to ignore when looking for source files.
55# This pattern also affects html_static_path and html_extra_path. 55# This pattern also affects html_static_path and html_extra_path.
56exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'boilerplate.rst'] 56exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'boilerplate.rst',
57 'adt-manual/*.rst']
57 58
58# master document name. The default changed from contents to index. so better 59# master document name. The default changed from contents to index. so better
59# set it ourselves. 60# set it ourselves.