From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935827AbcHJUI7 (ORCPT ); Wed, 10 Aug 2016 16:08:59 -0400 Received: from bombadil.infradead.org ([198.137.202.9]:40556 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935073AbcHJSaj (ORCPT ); Wed, 10 Aug 2016 14:30:39 -0400 Date: Wed, 10 Aug 2016 13:16:00 -0300 From: Mauro Carvalho Chehab To: Jani Nikula Cc: "Luis R. Rodriguez" , linux-doc@vger.kernel.org, "linux-kernel@vger.kernel.org" , Mauro Carvalho Chehab , Daniel Vetter , Jonathan Corbet , Markus Heiser Subject: Re: [RFC PATCH 3/3] Documentation: exclude media documentation from pdf generation Message-ID: <20160810131600.0b70adff@vela.lan> In-Reply-To: <2a56ee350d3b94098607ec733cde197e026f194a.1470844185.git.jani.nikula@intel.com> References: <20160810120535.27570309@vela.lan> <2a56ee350d3b94098607ec733cde197e026f194a.1470844185.git.jani.nikula@intel.com> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.30; x86_64-redhat-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jani, Em Wed, 10 Aug 2016 18:54:09 +0300 Jani Nikula escreveu: > Although pdflatex is more robust than rst2pdf, building media > documentation pdf still fails. Exclude media documentation from pdf > generation for now. Again, didn't test, but do you think the issues with pdflatex and media are solvable? > > Signed-off-by: Jani Nikula > --- > Documentation/conf.py | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > 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'), > ] > Cheers, Mauro