diff options
author | Jani Nikula <jani.nikula@intel.com> | 2016-08-10 18:54:09 +0300 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2016-08-13 00:25:53 +0300 |
commit | 3eb6cd6834c356f40e1633a0ced4ff9a4c59936b (patch) | |
tree | 9da15edb60fe905ff03f0ee78cc61b92b1fa11e9 /Documentation/conf.py | |
parent | f907ba930780d73e87791c73a4fdc1998e59db75 (diff) | |
download | linux-3eb6cd6834c356f40e1633a0ced4ff9a4c59936b.tar.xz |
Documentation: exclude media documentation from pdf generation
Although pdflatex is more robust than rst2pdf, building media
documentation pdf still fails. Exclude media documentation from pdf
generation for now.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
Acked-by: Markus Heiser <markus.heiser@darmarit.de>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'Documentation/conf.py')
-rw-r--r-- | Documentation/conf.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/conf.py b/Documentation/conf.py index 96b7aa66c89c..827dafc515b1 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -268,7 +268,9 @@ latex_elements = { # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'TheLinuxKernel.tex', 'The Linux Kernel Documentation', + ('kernel-documentation', 'kernel-documentation.tex', 'The Linux Kernel Documentation', + 'The kernel development community', 'manual'), + ('gpu/index', 'gpu.tex', 'Linux GPU Driver Developer\'s Guide', 'The kernel development community', 'manual'), ] |