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 | 437db1597888674868033d567d05185c20e5f128 (patch) | |
tree | bc4d47a8e9c8427972df0698dd69d8ec967971d3 /clang/docs/conf.py | |
parent | eedb5432c590793296544cc947cfe50544488a7d (diff) | |
download | bcm5719-llvm-437db1597888674868033d567d05185c20e5f128.tar.gz bcm5719-llvm-437db1597888674868033d567d05185c20e5f128.zip |
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).
llvm-svn: 171424
Diffstat (limited to 'clang/docs/conf.py')
-rw-r--r-- | clang/docs/conf.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/docs/conf.py b/clang/docs/conf.py index b69ccf54c3a..0c35fb103a4 100644 --- a/clang/docs/conf.py +++ b/clang/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 |