From patchwork Thu Dec 13 14:23:25 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Pinchart X-Patchwork-Id: 43 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 88602600CC for ; Thu, 13 Dec 2018 15:22:43 +0100 (CET) Received: from avalon.bb.dnainternet.fi (dfj612ybrt5fhg77mgycy-3.rev.dnainternet.fi [IPv6:2001:14ba:21f5:5b00:2e86:4862:ef6a:2804]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id EB0FF549 for ; Thu, 13 Dec 2018 15:22:42 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1544710963; bh=8lCRNJ3bHk+d0Fr1t5oIx4H+epUSQcEkfWH6F5oB+Q0=; h=From:To:Subject:Date:From; b=bSnnWA3SErLa4LGSzC+H+LrNAWmBiDAhxMwcL0TDRewcj5RNxqGqCYMR9YlRGEK+8 lnD5tjUacgcPi0tD+z4ABhw18zZVV7uLP3OdE89LmKUmL/MAz8nVpCynIZ4eFYRZve mdyP7NXaHEkhry4OnMRPeVbEBd6D6J7UKAu8muG4= From: Laurent Pinchart To: libcamera-devel@lists.libcamera.org Date: Thu, 13 Dec 2018 16:23:25 +0200 Message-Id: <20181213142327.4455-1-laurent.pinchart@ideasonboard.com> X-Mailer: git-send-email 2.19.2 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH 1/3] Documentation: Remove _static and _templates directory 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: Thu, 13 Dec 2018 14:22:43 -0000 sphinx only requires those directories to be present because they're referenced in the configuration file. Remove the references and the directories. Signed-off-by: Laurent Pinchart Acked-by: Jacopo Mondi --- Documentation/_static/.keep_empty | 0 Documentation/_templates/.keep_empty | 0 Documentation/conf.py | 4 ++-- 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 Documentation/_static/.keep_empty delete mode 100644 Documentation/_templates/.keep_empty diff --git a/Documentation/_static/.keep_empty b/Documentation/_static/.keep_empty deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/Documentation/_templates/.keep_empty b/Documentation/_templates/.keep_empty deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/Documentation/conf.py b/Documentation/conf.py index 83d233e51e91..770358198f03 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -42,7 +42,7 @@ extensions = [ ] # Add any paths that contain templates here, relative to this directory. -templates_path = ['_templates'] +templates_path = [] # The suffix(es) of source filenames. # You can specify multiple suffix as a list of string: @@ -85,7 +85,7 @@ html_theme = 'alabaster' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +html_static_path = [] # Custom sidebar templates, must be a dictionary that maps document names # to template names.