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 CC3AB138350 for ; Thu, 2 Apr 2020 09:38:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0AD33E0ADC; Thu, 2 Apr 2020 09:38:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E49EBE0ADC for ; Thu, 2 Apr 2020 09:38:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B65C934EEAB for ; Thu, 2 Apr 2020 09:38:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6A1771 for ; Thu, 2 Apr 2020 09:38:45 +0000 (UTC) From: "Keri Harris" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Keri Harris" Message-ID: <1585820303.de675aa379ca516c9fd09e49bdb3cea34eec11e4.keri@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mercury-extras/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mercury-extras/mercury-extras-20.01.1.ebuild X-VCS-Directories: dev-lang/mercury-extras/ X-VCS-Committer: keri X-VCS-Committer-Name: Keri Harris X-VCS-Revision: de675aa379ca516c9fd09e49bdb3cea34eec11e4 X-VCS-Branch: master Date: Thu, 2 Apr 2020 09:38:45 +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: 26896769-1495-42da-992f-1b95e37f7f26 X-Archives-Hash: 157674fa290c0457cae8009713bd43af commit: de675aa379ca516c9fd09e49bdb3cea34eec11e4 Author: Keri Harris gentoo org> AuthorDate: Thu Apr 2 09:36:49 2020 +0000 Commit: Keri Harris gentoo org> CommitDate: Thu Apr 2 09:38:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de675aa3 dev-lang/mercury-extras: fix mercury lib search paths. Closes #715838 Signed-off-by: Keri Harris gentoo.org> Package-Manager: Portage-2.3.89, Repoman-2.3.11 dev-lang/mercury-extras/mercury-extras-20.01.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-lang/mercury-extras/mercury-extras-20.01.1.ebuild b/dev-lang/mercury-extras/mercury-extras-20.01.1.ebuild index 8a9593959ae..7595eae754b 100644 --- a/dev-lang/mercury-extras/mercury-extras-20.01.1.ebuild +++ b/dev-lang/mercury-extras/mercury-extras-20.01.1.ebuild @@ -158,7 +158,7 @@ mercury_pkg_compile() { mmake -j1 \ MLFLAGS=--no-strip \ CFLAGS="${CFLAGS}" \ - LD_LIBFLAGS="${LDFLAGS} -L/usr/$(get_libdir)" \ + LD_LIBFLAGS="${LDFLAGS}" \ ${mercury_mmc_target} || die "mmake ${mercury_pkg} failed" } @@ -183,7 +183,7 @@ mercury_pkg_install() { mmake -j1 \ MLFLAGS=--no-strip \ CFLAGS="${CFLAGS}" \ - LD_LIBFLAGS="${LDFLAGS} -L/usr/$(get_libdir)" \ + LD_LIBFLAGS="${LDFLAGS}" \ INSTALL_LIBDIR="${D}/usr/$(get_libdir)/mercury/extras" \ lib${mercury_pkg_name}.install || die "mmake ${mercury_pkg} failed" fi