From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 6C42959CA3 for ; Mon, 7 Mar 2016 14:51:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EAB6821C01B; Mon, 7 Mar 2016 14:51:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 958AA21C01B for ; Mon, 7 Mar 2016 14:51:50 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8FFC340BA0 for ; Mon, 7 Mar 2016 14:51:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8138C1BA0 for ; Mon, 7 Mar 2016 14:51:47 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1457362303.82049238b1004c9715b574014e1c257924fe0f72.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/virtualbox/virtualbox-5.0.16.ebuild X-VCS-Directories: app-emulation/virtualbox/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: 82049238b1004c9715b574014e1c257924fe0f72 X-VCS-Branch: master Date: Mon, 7 Mar 2016 14:51:47 +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-Archives-Salt: c2766bf5-ccf1-44b5-940a-08d988970358 X-Archives-Hash: 162389d1bcb15f4b2cd728ba27aa295c commit: 82049238b1004c9715b574014e1c257924fe0f72 Author: PPed72 iol it> AuthorDate: Mon Mar 7 13:39:26 2016 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 7 14:51:43 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82049238 app-emulation/virtualbox: force usage of ld.bfd for virtualbox-5 See Gentoo bug #488176 app-emulation/virtualbox/virtualbox-5.0.16.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app-emulation/virtualbox/virtualbox-5.0.16.ebuild b/app-emulation/virtualbox/virtualbox-5.0.16.ebuild index 6dca89b..f08a021 100644 --- a/app-emulation/virtualbox/virtualbox-5.0.16.ebuild +++ b/app-emulation/virtualbox/virtualbox-5.0.16.ebuild @@ -132,6 +132,10 @@ pkg_setup() { fi java-pkg-opt-2_pkg_setup python-single-r1_pkg_setup + + tc-ld-disable-gold #bug 488176 + tc-export CC CXX LD AR RANLIB + export HOST_CC="$(tc-getBUILD_CC)" } src_prepare() { @@ -146,6 +150,10 @@ src_prepare() { sed -e "s@_LDFLAGS\.${ARCH}*.*=@& ${LDFLAGS}@g" \ -i Config.kmk src/libs/xpcom18a4/Config.kmk || die + # Do not use hard-coded ld (related to bug #488176) + sed -e '/QUIET)ld /s@ld @$(LD) @' \ + -i src/VBox/Devices/PC/ipxe/Makefile.kmk || die + # Use PAM only when pam USE flag is enbaled (bug #376531) if ! use pam ; then elog "Disabling PAM removes the possibility to use the VRDP features."