diff options
author | Sean Silva <silvas@purdue.edu> | 2013-01-02 22:48:50 +0000 |
---|---|---|
committer | Sean Silva <silvas@purdue.edu> | 2013-01-02 22:48:50 +0000 |
commit | bdaeb8ab3c7ff30e736be46cbd9f66ebcfa8ea79 (patch) | |
tree | e8344d3b467ff8df9b7fb0261810f31a93ffc4bd | |
parent | d829379ed95cdce29497118c6c6c39bd7f62f307 (diff) |
Exclude docs/analyzer/ from the default Sphinx build.
This paves the way for converting the analyzer docs to Sphinx (by
setting up a nested Sphinx tree in this directory).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171424 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/conf.py b/docs/conf.py index b69ccf54c3..0c35fb103a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -64,7 +64,7 @@ release = '3.3' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. -exclude_patterns = ['_build'] +exclude_patterns = ['_build', 'analyzer'] # The reST default role (used for this markup: `text`) to use for all documents. #default_role = None |