From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DB626138334 for ; Tue, 12 Feb 2019 22:52:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E3801E0880; Tue, 12 Feb 2019 22:52:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB304E0880 for ; Tue, 12 Feb 2019 22:52:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A5ABB340D31 for ; Tue, 12 Feb 2019 22:52:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 68CFE537 for ; Tue, 12 Feb 2019 22:52:01 +0000 (UTC) From: "James Le Cuirot" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "James Le Cuirot" Message-ID: <1550011890.af447daaa84a1e17d862c9917d54c6dcbc47ec75.chewi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/binutils-libs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/binutils-libs/binutils-libs-2.31.1-r3.ebuild X-VCS-Directories: sys-libs/binutils-libs/ X-VCS-Committer: chewi X-VCS-Committer-Name: James Le Cuirot X-VCS-Revision: af447daaa84a1e17d862c9917d54c6dcbc47ec75 X-VCS-Branch: master Date: Tue, 12 Feb 2019 22:52:01 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 08dc3de6-029e-4589-a83f-cce5edfea35a X-Archives-Hash: 581752872b2517fc6b00221a06920f3d commit: af447daaa84a1e17d862c9917d54c6dcbc47ec75 Author: James Le Cuirot gentoo org> AuthorDate: Tue Feb 12 22:51:30 2019 +0000 Commit: James Le Cuirot gentoo org> CommitDate: Tue Feb 12 22:51:30 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af447daa sys-libs/binutils-libs: Fix cross-compile relinking with elibtoolize Package-Manager: Portage-2.3.60, Repoman-2.3.12 Signed-off-by: James Le Cuirot gentoo.org> sys-libs/binutils-libs/binutils-libs-2.31.1-r3.ebuild | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sys-libs/binutils-libs/binutils-libs-2.31.1-r3.ebuild b/sys-libs/binutils-libs/binutils-libs-2.31.1-r3.ebuild index 17c9385a65d..ab44debb726 100644 --- a/sys-libs/binutils-libs/binutils-libs-2.31.1-r3.ebuild +++ b/sys-libs/binutils-libs/binutils-libs-2.31.1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -6,7 +6,7 @@ EAPI=6 PATCH_VER=5 PATCH_DEV=dilfridge -inherit eutils toolchain-funcs multilib-minimal +inherit eutils libtool toolchain-funcs multilib-minimal MY_PN="binutils" MY_P="${MY_PN}-${PV}" @@ -45,6 +45,10 @@ src_prepare() { einfo "Applying binutils-${PATCH_BINUTILS_VER} patchset ${PATCH_VER}" eapply "${WORKDIR}/patch"/*.patch fi + + # Fix cross-compile relinking issue. + elibtoolize + default }