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 E9E2F1382C5 for ; Sun, 28 Jun 2020 11:46:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1B198E08BD; Sun, 28 Jun 2020 11:46: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 F1A4AE08BD for ; Sun, 28 Jun 2020 11:46: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 7718434ED8D for ; Sun, 28 Jun 2020 11:46:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 036962B0 for ; Sun, 28 Jun 2020 11:46:02 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1593344649.623d4ab26471435828adb197d675568b9212af47.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pari/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-mathematics/pari/pari-2.11.4.ebuild X-VCS-Directories: sci-mathematics/pari/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 623d4ab26471435828adb197d675568b9212af47 X-VCS-Branch: master Date: Sun, 28 Jun 2020 11:46:02 +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: ac4c5a93-3372-47e3-8409-981ce552af99 X-Archives-Hash: 6204801a5b8e59dd028330fe1ac8cc0f commit: 623d4ab26471435828adb197d675568b9212af47 Author: François Bissey gmail com> AuthorDate: Sat Jun 27 08:51:47 2020 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sun Jun 28 11:44:09 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623d4ab2 sci-mathematics/pari: unset LD at configuration time Package-Manager: Portage-2.3.99, Repoman-2.3.23 Closes: https://bugs.gentoo.org/722090 Closes: https://github.com/gentoo/gentoo/pull/16445 Signed-off-by: François René Pierre Bissey gmail.com> Signed-off-by: Michael Orlitzky gentoo.org> sci-mathematics/pari/pari-2.11.4.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sci-mathematics/pari/pari-2.11.4.ebuild b/sci-mathematics/pari/pari-2.11.4.ebuild index 8dc1c90f6f0..2d485e21564 100644 --- a/sci-mathematics/pari/pari-2.11.4.ebuild +++ b/sci-mathematics/pari/pari-2.11.4.ebuild @@ -61,7 +61,11 @@ src_configure() { # sysdatadir installs a pari.cfg stuff which is informative only. # It is supposed to be for "architecture-dependent" data. # It needs to be easily discoverable for downstream packages such as gp2c. - ./Configure \ + # We set LD to "" so that it is set to the value of the compiler used + # which is how a normal end user is expected to configure it. pari's build + # system do not cope very well with a naked linker, it is expecting a + # compiler driver. See https://bugs.gentoo.org/722090 + LD="" ./Configure \ --prefix="${EPREFIX}"/usr \ --datadir="${EPREFIX}/usr/share/${PN}" \ --libdir="${EPREFIX}/usr/$(get_libdir)" \