From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751761AbdCCM1D (ORCPT ); Fri, 3 Mar 2017 07:27:03 -0500 Received: from dougal.metanate.com ([90.155.101.14]:26541 "EHLO metanate.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751487AbdCCM1A (ORCPT ); Fri, 3 Mar 2017 07:27:00 -0500 From: John Keeping To: Jonathan Corbet Cc: linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org, John Keeping Subject: [PATCH] Documentation/sphinx: fix primary_domain configuration Date: Fri, 3 Mar 2017 12:24:05 +0000 Message-Id: <20170303122405.6392-1-john@metanate.com> X-Mailer: git-send-email 2.12.0.377.gf910686b23.dirty Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org With Sphinx 1.5.3 I get the warning: WARNING: primary_domain 'C' not found, ignored. It seems that domain names in Sphinx are case-sensitive and for the C domain the name must be lower case. Signed-off-by: John Keeping --- Documentation/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/conf.py b/Documentation/conf.py index f6823cf01275..7fadb3b83293 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -135,7 +135,7 @@ pygments_style = 'sphinx' # If true, `todo` and `todoList` produce output, else they produce nothing. todo_include_todos = False -primary_domain = 'C' +primary_domain = 'c' highlight_language = 'none' # -- Options for HTML output ---------------------------------------------- -- 2.12.0.377.gf910686b23.dirty