From patchwork Sat May 17 08:52:51 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Petazzoni X-Patchwork-Id: 349857 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 25D2B140080 for ; Sat, 17 May 2014 18:53:11 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 580EF30FAD; Sat, 17 May 2014 08:53:10 +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 lKVOnA53LrOq; Sat, 17 May 2014 08:53:07 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 9A94A2FFD2; Sat, 17 May 2014 08:53:07 +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 E0C2B1BFA01 for ; Sat, 17 May 2014 08:53:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id DC5798BCF7 for ; Sat, 17 May 2014 08:53: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 J4TYaHf4sP-z for ; Sat, 17 May 2014 08:53:03 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.free-electrons.com (top.free-electrons.com [176.31.233.9]) by fraxinus.osuosl.org (Postfix) with ESMTP id 94D1E8BCF4 for ; Sat, 17 May 2014 08:53:03 +0000 (UTC) Received: by mail.free-electrons.com (Postfix, from userid 106) id BA5D87F8; Sat, 17 May 2014 10:53:03 +0200 (CEST) Received: from localhost (AToulouse-651-1-158-31.w92-136.abo.wanadoo.fr [92.136.201.31]) by mail.free-electrons.com (Postfix) with ESMTPSA id 7A57015C; Sat, 17 May 2014 10:52:53 +0200 (CEST) From: Thomas Petazzoni To: buildroot@uclibc.org Date: Sat, 17 May 2014 10:52:51 +0200 Message-Id: <1400316771-25226-1-git-send-email-thomas.petazzoni@free-electrons.com> X-Mailer: git-send-email 1.9.3 Cc: Thomas Petazzoni Subject: [Buildroot] [PATCH] elfutils: propagate architecture dependency to comment 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 elfutils depends on !BR2_avr32, but this dependency was not properly propagated to the comment about toolchain options. This commit fixes that. Signed-off-by: Thomas Petazzoni --- package/elfutils/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/elfutils/Config.in b/package/elfutils/Config.in index 588c29d..6025a74 100644 --- a/package/elfutils/Config.in +++ b/package/elfutils/Config.in @@ -1,4 +1,5 @@ comment "elfutils needs a toolchain w/ largefile, wchar" + depends on !BR2_avr32 depends on !BR2_LARGEFILE || !BR2_USE_WCHAR config BR2_PACKAGE_ELFUTILS