From patchwork Mon Jan 14 09:40:44 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 220 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 9034A60C6A for ; Mon, 14 Jan 2019 10:40:48 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id E95E0505; Mon, 14 Jan 2019 10:40:47 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1547458848; bh=qQr65TFBLCjmUdB9T+5WzHjP3oKOYT9G5ny9q7ghWmw=; h=From:To:Cc:Subject:Date:From; b=wbAmV0byvQjqyMOLGXSXhUAOrulKtgrse0F/GI1Uf9ZKDUi3GDvNxS0SMJZh7Pe5S uE2dGJw/6Vn6YUchzf6toFdfAPyMc+Ubv3fWeN+ATNDFqHawFAqs1HRSzV7RoqnaLs /hv3L+AbjgEd9zjiWAlDQrKkLXQdNYi8GnOL0ADg= From: Kieran Bingham To: LibCamera Devel Date: Mon, 14 Jan 2019 09:40:44 +0000 Message-Id: <20190114094044.15566-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.17.1 Subject: [libcamera-devel] [PATCH] Documentation: quieten sphinx-build output X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Jan 2019 09:40:48 -0000 The output of the sphinx-build for our documentation is overly verbose. Reduce this output to warnings and errors with the '-q' quiet option. Signed-off-by: Kieran Bingham Acked-by: Jacopo Mondi --- Documentation/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/meson.build b/Documentation/meson.build index dd43b2cbd401..73da25b848cc 100644 --- a/Documentation/meson.build +++ b/Documentation/meson.build @@ -49,7 +49,7 @@ if sphinx.found() ] custom_target('documentation', - command: [sphinx, '-W', '-b', 'html', meson.current_source_dir(), '@OUTPUT@'], + command: [sphinx, '-q', '-W', '-b', 'html', meson.current_source_dir(), '@OUTPUT@'], input: docs_sources, output: 'html', build_by_default: true,