From patchwork Tue Aug 5 23:00:09 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paul Cercueil X-Patchwork-Id: 376817 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 261CD1400AF for ; Wed, 6 Aug 2014 09:00:41 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0BDA58BC56; Tue, 5 Aug 2014 23:00:40 +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 dBjx-vWeEHHt; Tue, 5 Aug 2014 23:00:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 059FA8BA5A; Tue, 5 Aug 2014 23:00:36 +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 A32A61CED18 for ; Tue, 5 Aug 2014 23:00:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9E4EA8BA04 for ; Tue, 5 Aug 2014 23:00:33 +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 LaJ-HDE1jiJG for ; Tue, 5 Aug 2014 23:00:33 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from marvin.crapouillou.net (rev33.vpn.fdn.fr [80.67.179.33]) by whitealder.osuosl.org (Postfix) with ESMTPS id E8D7E8B9B4 for ; Tue, 5 Aug 2014 23:00:32 +0000 (UTC) Received: from acaen-252-1-6-225.w90-62.abo.wanadoo.fr ([90.62.133.225] helo=localhost.localdomain) by marvin.crapouillou.net with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA256:128) (Exim 4.80) (envelope-from ) id 1XEniW-0000D6-Mw; Wed, 06 Aug 2014 01:00:28 +0200 From: Paul Cercueil To: buildroot@busybox.net Date: Wed, 6 Aug 2014 01:00:09 +0200 Message-Id: <1407279610-15589-1-git-send-email-paul@crapouillou.net> X-Mailer: git-send-email 2.0.1 Cc: Paul Cercueil Subject: [Buildroot] [PATCH 1/2] binutils: Also install libopcodes in staging 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 This library will be used later in the "lightning" package. Signed-off-by: Paul Cercueil --- package/binutils/binutils.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/package/binutils/binutils.mk b/package/binutils/binutils.mk index 4888eeb..d4f6753 100644 --- a/package/binutils/binutils.mk +++ b/package/binutils/binutils.mk @@ -75,9 +75,11 @@ HOST_BINUTILS_CONF_OPT = --disable-multilib --disable-werror \ $(BINUTILS_DISABLE_GDB_CONF_OPT) \ $(BINUTILS_EXTRA_CONFIG_OPTIONS) -# We just want libbfd and libiberty, not the full-blown binutils in staging +# We just want libbfd, libiberty and libopcodes, +# not the full-blown binutils in staging define BINUTILS_INSTALL_STAGING_CMDS $(MAKE) -C $(@D)/bfd DESTDIR=$(STAGING_DIR) install + $(MAKE) -C $(@D)/opcodes DESTDIR=$(STAGING_DIR) install $(MAKE) -C $(@D)/libiberty DESTDIR=$(STAGING_DIR) install endef