From patchwork Sun Mar 24 22:29:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 230505 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 C569B2C008D for ; Mon, 25 Mar 2013 09:29:48 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CABF78C067; Sun, 24 Mar 2013 22:29:46 +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 NeNgRjCTa+wq; Sun, 24 Mar 2013 22:29:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 0CC3D8C94C; Sun, 24 Mar 2013 22:29:38 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id C6FB58F753 for ; Sun, 24 Mar 2013 22:29:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id B48C11009A9 for ; Sun, 24 Mar 2013 22:29:02 +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 2torCp7kGFn5 for ; Sun, 24 Mar 2013 22:28:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (mail.free-electrons.com [94.23.35.102]) by fraxinus.osuosl.org (Postfix) with ESMTP id 661481009BC for ; Sun, 24 Mar 2013 22:28:58 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id 03510864; Sun, 24 Mar 2013 23:29:12 +0100 (CET) Received: from localhost (humanoidz.org [82.247.183.72]) by mail.free-electrons.com (Postfix) with ESMTPSA id 5D00B7CF for ; Sun, 24 Mar 2013 23:29:12 +0100 (CET) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sun, 24 Mar 2013 23:29:05 +0100 Message-Id: <1364164146-16517-2-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1364164146-16517-1-git-send-email-thomas.petazzoni@free-electrons.com> References: <1364164146-16517-1-git-send-email-thomas.petazzoni@free-electrons.com> Subject: [Buildroot] [PATCH 1/2] texinfo: new host package X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net The makeinfo program from texinfo is needed to get Crosstool-NG to build properly a toolchain. Long term, it would be great if Crosstool-NG supported building without texinfo, simply by disabling the build of documentation. Signed-off-by: Thomas Petazzoni --- package/texinfo/texinfo.mk | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 package/texinfo/texinfo.mk diff --git a/package/texinfo/texinfo.mk b/package/texinfo/texinfo.mk new file mode 100644 index 0000000..54d18b6 --- /dev/null +++ b/package/texinfo/texinfo.mk @@ -0,0 +1,14 @@ +############################################################# +# +# texinfo +# +############################################################# + +# We are intentionally not using the latest version 5.x, because it +# causes issues with the documentation building process when creating +# a toolchain with the Crosstool-NG backend. + +TEXINFO_VERSION = 4.13a +TEXINFO_SITE = $(BR2_GNU_MIRROR)/texinfo + +$(eval $(host-autotools-package))