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 D75D61396D0 for ; Sat, 30 Sep 2017 13:03:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33F5AE0824; Sat, 30 Sep 2017 13:03:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 107C2E0824 for ; Sat, 30 Sep 2017 13:03:41 +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 C422F3416EC for ; Sat, 30 Sep 2017 13:03:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 566299083 for ; Sat, 30 Sep 2017 13:03:39 +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: <1506776604.c2fba202b9fdcdcf0e40340908fe86feff818edd.keri@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/mercury/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/mercury/mercury-13.05.2.ebuild X-VCS-Directories: dev-lang/mercury/ X-VCS-Committer: keri X-VCS-Committer-Name: Keri Harris X-VCS-Revision: c2fba202b9fdcdcf0e40340908fe86feff818edd X-VCS-Branch: master Date: Sat, 30 Sep 2017 13:03:39 +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: 53ad7b46-ebb2-4ec8-a2e7-df3b271a6188 X-Archives-Hash: 3fd0c72e969adc88dc96b6166f0b274a commit: c2fba202b9fdcdcf0e40340908fe86feff818edd Author: Keri Harris gentoo org> AuthorDate: Sat Sep 30 13:03:08 2017 +0000 Commit: Keri Harris gentoo org> CommitDate: Sat Sep 30 13:03:24 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2fba202 dev-lang/mercury: do not allow the Mercury compiler to pre-strip binaries while bootstrapping Package-Manager: Portage-2.3.8, Repoman-2.3.1 dev-lang/mercury/mercury-13.05.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-lang/mercury/mercury-13.05.2.ebuild b/dev-lang/mercury/mercury-13.05.2.ebuild index 1089fcd1ea0..b0836202a1b 100644 --- a/dev-lang/mercury/mercury-13.05.2.ebuild +++ b/dev-lang/mercury/mercury-13.05.2.ebuild @@ -142,7 +142,8 @@ src_test() { src_install() { emake \ PARALLEL=${MAKEOPTS} \ - MMAKEFLAGS="EXTRA_LDFLAGS='${LDFLAGS}' \ + MMAKEFLAGS="EXTRA_MLFLAGS=--no-strip \ + EXTRA_LDFLAGS='${LDFLAGS}' \ EXTRA_LD_LIBFLAGS='${LDFLAGS}'" \ MERCURY_COMPILER="${S}"/compiler/mercury_compile \ INSTALL_PREFIX="${D}"/usr \