From patchwork Sat Oct 27 19:22:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sagaert Johan X-Patchwork-Id: 194632 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 7E21D2C0087 for ; Sun, 28 Oct 2012 07:12:13 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D56F8103AFA; Sat, 27 Oct 2012 20:12:05 +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 5l7A9QqMyCxP; Sat, 27 Oct 2012 20:12:02 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id C0E28102DF8; Sat, 27 Oct 2012 20:12:02 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 707A68F74A for ; Sat, 27 Oct 2012 20:12:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DE5688C988 for ; Sat, 27 Oct 2012 20:12:06 +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 on-Lxyu+7yyY for ; Sat, 27 Oct 2012 20:12:04 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailrelay020.isp.belgacom.be (Mailrelay020.isp.belgacom.be [195.238.6.95]) by whitealder.osuosl.org (Postfix) with ESMTP id 65D958C90D for ; Sat, 27 Oct 2012 20:12:03 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AgcFACQ/jFBR8cEw/2dsb2JhbABEhVEBvQuBCYJ7I09LN4gKu0+PLoMkA5V0gRqPKIJx Received: from 48.193-241-81.adsl-dyn.isp.belgacom.be (HELO debian605.apex) ([81.241.193.48]) by relay.skynet.be with ESMTP; 27 Oct 2012 22:12:02 +0200 From: Sagaert Johan To: buildroot@busybox.net Date: Sat, 27 Oct 2012 21:22:09 +0200 Message-Id: <1351365729-17914-1-git-send-email-sagaert.johan@skynet.be> X-Mailer: git-send-email 1.8.0 Cc: Sagaert Johan Subject: [Buildroot] [PATCH 1/1] binutils version 2.23 is only available is .gz format 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 binutils version 2.23 is only available in .gz format, the older versions are in .bz2 format. Signed-off-by: Sagaert Johan --- package/binutils/binutils.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index d41cac4..e1aac9b 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -16,7 +16,12 @@ BINUTILS_VERSION = 2.21 endif endif +ifeq ($(BINUTILS_VERSION),2.23) +BINUTILS_SOURCE = binutils-$(BINUTILS_VERSION).tar.gz +else BINUTILS_SOURCE = binutils-$(BINUTILS_VERSION).tar.bz2 +endif + BINUTILS_SITE = $(BR2_GNU_MIRROR)/binutils ifeq ($(ARCH),avr32) BINUTILS_SITE = ftp://www.at91.com/pub/buildroot