From patchwork Fri Aug 12 14:48:42 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Heiser X-Patchwork-Id: 9277229 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 4B41160752 for ; Fri, 12 Aug 2016 14:49:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 3CF1528A3D for ; Fri, 12 Aug 2016 14:49:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 31D0A28A3F; Fri, 12 Aug 2016 14:49:11 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E0C1428A3D for ; Fri, 12 Aug 2016 14:49:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752161AbcHLOtI (ORCPT ); Fri, 12 Aug 2016 10:49:08 -0400 Received: from smtp3-1.goneo.de ([85.220.129.38]:42620 "EHLO smtp3-1.goneo.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751561AbcHLOtH (ORCPT ); Fri, 12 Aug 2016 10:49:07 -0400 Received: from localhost (localhost [127.0.0.1]) by smtp3.goneo.de (Postfix) with ESMTP id 75B1423F979; Fri, 12 Aug 2016 16:49:05 +0200 (CEST) X-Virus-Scanned: by goneo Received: from smtp3.goneo.de ([127.0.0.1]) by localhost (smtp3.goneo.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id l59rRwbC6eVH; Fri, 12 Aug 2016 16:48:53 +0200 (CEST) Received: from ubu1604.fritz.box (dyndsl-095-033-019-091.ewe-ip-backbone.de [95.33.19.91]) by smtp3.goneo.de (Postfix) with ESMTPSA id 628EE23F803; Fri, 12 Aug 2016 16:48:53 +0200 (CEST) From: Markus Heiser To: Mauro Carvalho Chehab , Jani Nikula Cc: Markus Heiser , Jonathan Corbet , Linux Media Mailing List Subject: [PATCH 1/3] doc-rst: add docutils config file Date: Fri, 12 Aug 2016 16:48:42 +0200 Message-Id: <1471013324-18914-2-git-send-email-markus.heiser@darmarit.de> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1471013324-18914-1-git-send-email-markus.heiser@darmarit.de> References: <1471013324-18914-1-git-send-email-markus.heiser@darmarit.de> Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Markus Heiser To stop the sphinx-build on severe errors and exit with an exit code (to stop make) the halt_level must be set. The halt_level can't be set from sphinx, it is a docutils configuration [1]. For this a docutils.conf was added. [1] http://docutils.sourceforge.net/docs/user/config.html Signed-off-by: Markus Heiser --- Documentation/docutils.conf | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Documentation/docutils.conf diff --git a/Documentation/docutils.conf b/Documentation/docutils.conf new file mode 100644 index 0000000..2830772 --- /dev/null +++ b/Documentation/docutils.conf @@ -0,0 +1,7 @@ +# -*- coding: utf-8 mode: conf-colon -*- +# +# docutils configuration file +# http://docutils.sourceforge.net/docs/user/config.html + +[general] +halt_level: severe \ No newline at end of file