From patchwork Sat Aug 12 21:06:10 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 800929 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xVDvP4mCfz9t3F for ; Sun, 13 Aug 2017 07:06:41 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id B17B324BF2; Sat, 12 Aug 2017 21:06:36 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oIEpar09Gdm4; Sat, 12 Aug 2017 21:06:34 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id BC49E2530B; Sat, 12 Aug 2017 21:06:34 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 07D401C03DA for ; Sat, 12 Aug 2017 21:06:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id F1575896B7 for ; Sat, 12 Aug 2017 21:06:32 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id RExlS+YO8DHb for ; Sat, 12 Aug 2017 21:06:31 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from exchange.essensium.com (220.77.144.195.ipv4.evonet.be [195.144.77.220]) by hemlock.osuosl.org (Postfix) with ESMTPS id 852BC895DD for ; Sat, 12 Aug 2017 21:06:31 +0000 (UTC) Received: from vandecaa-laptop.fritz.box (178.3.14.190) by beleexch01.local.ess-mail.com (10.3.7.8) with Microsoft SMTP Server (TLS) id 15.0.847.32; Sat, 12 Aug 2017 23:06:11 +0200 From: "Arnout Vandecappelle (Essensium/Mind)" To: Date: Sat, 12 Aug 2017 23:06:10 +0200 Message-ID: <20170812210610.536-1-arnout@mind.be> X-Mailer: git-send-email 2.13.3 MIME-Version: 1.0 X-Originating-IP: [178.3.14.190] X-ClientProxiedBy: beleexch01.local.ess-mail.com (10.3.7.8) To beleexch01.local.ess-mail.com (10.3.7.8) Cc: grunpferd@netscape.net, Peter Seiderer Subject: [Buildroot] [PATCH v2] gst1-validate: disable building documentation using sphinx X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" From: Peter Seiderer Fix a build failure in case (a non functional) sphinx documentation system is installed on the host (reported [1] and fix tested [2] by grunpferd@netscape.net). Fixes: sphinx-build -b html -d ./doctrees . ./html Error: Source directory doesn't contain a conf.py file. [1] http://lists.busybox.net/pipermail/buildroot/2017-August/200021.html [2] http://lists.busybox.net/pipermail/buildroot/2017-August/200267.html Signed-off-by: Peter Seiderer Cc: grunpferd@netscape.net [Arnout: - use --disable-sphinx-doc instead of a cv variable - remove the comment, it speaks for itself] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- package/gstreamer1/gst1-validate/gst1-validate.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/package/gstreamer1/gst1-validate/gst1-validate.mk b/package/gstreamer1/gst1-validate/gst1-validate.mk index c5e3ec6fc9..31b01ef5fa 100644 --- a/package/gstreamer1/gst1-validate/gst1-validate.mk +++ b/package/gstreamer1/gst1-validate/gst1-validate.mk @@ -18,4 +18,6 @@ GST1_VALIDATE_DEPENDENCIES = \ python \ $(if $(BR2_PACKAGE_CAIRO),cairo) +GST1_VALIDATE_CONF_OPTS += --disable-sphinx-doc + $(eval $(autotools-package))