From patchwork Thu Feb 26 16:55:57 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: justin.swartz@nym.hush.com X-Patchwork-Id: 443986 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 1BF5114008F for ; Fri, 27 Feb 2015 03:56:03 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EC0F3921AD; Thu, 26 Feb 2015 16:56:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id kNdGfDfPu3kk; Thu, 26 Feb 2015 16:56:00 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 1CF62920C2; Thu, 26 Feb 2015 16:56:00 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id EF2E31C252A for ; Thu, 26 Feb 2015 16:55:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id EB18A957E6 for ; Thu, 26 Feb 2015 16:55:58 +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 0d+8gMAO0dCk for ; Thu, 26 Feb 2015 16:55:58 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtp2.hushmail.com (smtp2.hushmail.com [65.39.178.134]) by hemlock.osuosl.org (Postfix) with ESMTPS id 7DD7E957E1 for ; Thu, 26 Feb 2015 16:55:58 +0000 (UTC) Received: from smtp2.hushmail.com (localhost [127.0.0.1]) by smtp2.hushmail.com (Postfix) with SMTP id 24140A01F4 for ; Thu, 26 Feb 2015 16:55:58 +0000 (UTC) X-hush-tls-connected: 1 Received: from smtp.hushmail.com (w2.hushmail.com [65.39.178.46]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp2.hushmail.com (Postfix) with ESMTPS; Thu, 26 Feb 2015 16:55:58 +0000 (UTC) Received: by smtp.hushmail.com (Postfix, from userid 99) id 0A80BE0447; Thu, 26 Feb 2015 16:55:58 +0000 (UTC) MIME-Version: 1.0 Date: Thu, 26 Feb 2015 18:55:57 +0200 To: buildroot@buildroot.org From: justin.swartz@nym.hush.com In-Reply-To: <877fv57f9j.fsf@dell.be.48ers.dk> References: <20150224235024.844FBE0447@smtp.hushmail.com> <877fv57f9j.fsf@dell.be.48ers.dk> Message-Id: <20150226165558.0A80BE0447@smtp.hushmail.com> Cc: yann.morin.1998@free.fr Subject: [Buildroot] [PATCH v3] libgtk2: skip tutorial and faq build 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" Fixes: http://article.gmane.org/gmane.comp.lib.uclibc.buildroot/65165 Pass "DB2HTML=false" in LIBGTK2_CONF_ENV to disable the building of the Tutorial and the FAQ. Signed-off-by: Justin Swartz Tested-by: "Yann E. MORIN" Acked-by: "Yann E. MORIN" --- Changes v2 -> v3: - Removed 0002-configure-have_docbook.patch - Replaced "ac_cv_prog_DB2HTML=no" with "DB2HTML=no" in LIBGTK2_CONF_ENV - Removed "--disable-gtk-doc-pdf" and "--disable-gtk-doc-html" from LIBGTK2_CONF_OPTS Changes v1 -> v2: - Commit log added to the head of "0002-configure-have_docbook.patch" - Moved "--disable-gtk-doc-pdf" and "--disable-gtk-doc-html" to the end of LIBGTK2_CONF_OPTS --- package/libgtk2/libgtk2.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/libgtk2/libgtk2.mk b/package/libgtk2/libgtk2.mk index dfc1f5b..f52dfaf 100644 --- a/package/libgtk2/libgtk2.mk +++ b/package/libgtk2/libgtk2.mk @@ -69,7 +69,8 @@ LIBGTK2_CONF_ENV = \ ac_cv_path_GTK_UPDATE_ICON_CACHE=$(HOST_DIR)/usr/bin/gtk-update-icon-cache \ ac_cv_path_GDK_PIXBUF_CSOURCE=$(HOST_DIR)/usr/bin/gdk-pixbuf-csource \ ac_cv_prog_F77=no \ - ac_cv_path_CUPS_CONFIG=no + ac_cv_path_CUPS_CONFIG=no \ + DB2HTML=false LIBGTK2_CONF_OPTS = --disable-glibtest --enable-explicit-deps=no