1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: add .pc to the list of excluded patterns
Author: Dmitry Shachnev <mitya57@debian.org>
Forwarded: not-needed
Last-Update: 2017-12-29
--- a/conf.py
+++ b/conf.py
@@ -73,9 +73,10 @@
# List of documents that shouldn't be included in the build.
#unused_docs = []
-# List of directories, relative to source directory, that shouldn't be searched
-# for source files.
-exclude_trees = ['_build']
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+# This patterns also effect to html_static_path and html_extra_path
+exclude_patterns = ['_build', '.pc']
# The reST default role (used for this markup: `text`) to use for all documents.
#default_role = None
|