From patchwork Sun Oct 19 08:11:10 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 400745 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 5B8DF140095 for ; Sun, 19 Oct 2014 19:11:27 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 837B5A1B84; Sun, 19 Oct 2014 08:11:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k7d04FSMjHuv; Sun, 19 Oct 2014 08:11:25 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 6C1F8A1B89; Sun, 19 Oct 2014 08:11:22 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 873751CEDB0 for ; Sun, 19 Oct 2014 08:11:19 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 482412D4AE for ; Sun, 19 Oct 2014 08:11:19 +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 Y0m09do76IpY for ; Sun, 19 Oct 2014 08:11:18 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout10.t-online.de (mailout10.t-online.de [194.25.134.21]) by silver.osuosl.org (Postfix) with ESMTPS id C974E333D7 for ; Sun, 19 Oct 2014 08:11:17 +0000 (UTC) Received: from fwd04.aul.t-online.de (fwd04.aul.t-online.de [172.20.26.149]) by mailout10.t-online.de (Postfix) with SMTP id C5A1F46455A for ; Sun, 19 Oct 2014 10:11:15 +0200 (CEST) Received: from fli4l.lan.fli4l (Tly1jiZeQhGYwGaN4fyTS3WsPjXq6QYdQ2fyIZxOMEUwTO2h+7hrEU5EzhhqAJow6e@[79.247.145.188]) by fwd04.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1Xfla6-0v1Rnk0; Sun, 19 Oct 2014 10:11:14 +0200 Received: from fli4lbuild64.lan.fli4l ([192.168.1.51]:42062) by fli4l.lan.fli4l with esmtpsa (TLSv1.2:DHE-RSA-AES256-GCM-SHA384:256) (Exim 4.84) (envelope-from ) id 1Xfla5-0007p8-ON; Sun, 19 Oct 2014 10:11:14 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 19 Oct 2014 10:11:10 +0200 Message-Id: <1413706270-27411-3-git-send-email-bernd.kuhls@t-online.de> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: <1413706270-27411-1-git-send-email-bernd.kuhls@t-online.de> References: <1413706270-27411-1-git-send-email-bernd.kuhls@t-online.de> X-ID: Tly1jiZeQhGYwGaN4fyTS3WsPjXq6QYdQ2fyIZxOMEUwTO2h+7hrEU5EzhhqAJow6e X-TOI-MSGID: 60c06b1e-3253-4183-a1eb-cf2e59c68df8 Cc: Bernd Kuhls Subject: [Buildroot] [PATCH 3/3] Apply --disable-gtk-doc-html to all packages 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Move this option to package/pkg-autotools.mk so it applies to all packages. Signed-off-by: Bernd Kuhls Reviewed-by: "Yann E. MORIN" --- package/pango/pango.mk | 2 +- package/pkg-autotools.mk | 2 ++ package/webkit/webkit.mk | 1 - 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/package/pango/pango.mk b/package/pango/pango.mk index 46490c1..a18a49d 100644 --- a/package/pango/pango.mk +++ b/package/pango/pango.mk @@ -40,7 +40,7 @@ PANGO_CONF_ENV = ac_cv_func_posix_getpwuid_r=yes glib_cv_stack_grows=no \ ac_use_included_regex=no gl_cv_c_restrict=no \ ac_cv_path_FREETYPE_CONFIG=$(STAGING_DIR)/usr/bin/freetype-config -PANGO_CONF_OPTS = --enable-explicit-deps=no --disable-gtk-doc-html +PANGO_CONF_OPTS = --enable-explicit-deps=no PANGO_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \ host-pkgconf \ diff --git a/package/pkg-autotools.mk b/package/pkg-autotools.mk index fcca9e9..d93c759 100644 --- a/package/pkg-autotools.mk +++ b/package/pkg-autotools.mk @@ -136,6 +136,7 @@ define $(2)_CONFIGURE_CMDS --sysconfdir=/etc \ --program-prefix="" \ --disable-gtk-doc \ + --disable-gtk-doc-html \ --disable-doc \ --disable-docs \ --disable-documentation \ @@ -168,6 +169,7 @@ define $(2)_CONFIGURE_CMDS --sysconfdir="$$(HOST_DIR)/etc" \ --enable-shared --disable-static \ --disable-gtk-doc \ + --disable-gtk-doc-html \ --disable-doc \ --disable-docs \ --disable-documentation \ diff --git a/package/webkit/webkit.mk b/package/webkit/webkit.mk index 77b533a..0694a5b 100644 --- a/package/webkit/webkit.mk +++ b/package/webkit/webkit.mk @@ -45,7 +45,6 @@ WEBKIT_CONF_OPTS += \ --disable-webkit2 \ --disable-glibtest \ --disable-video \ - --disable-gtk-doc-html \ --disable-tests # Xorg Dependencies