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 EB23B138359 for ; Sun, 16 Aug 2020 16:45:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24B3BE0858; Sun, 16 Aug 2020 16:45:08 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 0C188E0858 for ; Sun, 16 Aug 2020 16:45:08 +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 2FFDD34EF24 for ; Sun, 16 Aug 2020 16:45:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DE2D22B for ; Sun, 16 Aug 2020 16:45:03 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1597596288.97c13ee8027a273fd6cf7c56aed5f45783e07b1a.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-devel/bmake/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-devel/bmake/bmake-20200318.ebuild X-VCS-Directories: sys-devel/bmake/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 97c13ee8027a273fd6cf7c56aed5f45783e07b1a X-VCS-Branch: master Date: Sun, 16 Aug 2020 16:45:03 +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: 6362abec-3894-45ce-b6c7-654a977fc77f X-Archives-Hash: 8dfc603f50cf65c38d2cbf112ec5ece9 commit: 97c13ee8027a273fd6cf7c56aed5f45783e07b1a Author: David Seifert gentoo org> AuthorDate: Sun Aug 16 16:44:48 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Aug 16 16:44:48 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97c13ee8 sys-devel/bmake: Fix test failure * Use correct target for tests Closes: https://bugs.gentoo.org/737444 Package-Manager: Portage-3.0.2, Repoman-2.3.23 Signed-off-by: David Seifert gentoo.org> sys-devel/bmake/bmake-20200318.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sys-devel/bmake/bmake-20200318.ebuild b/sys-devel/bmake/bmake-20200318.ebuild index c7915e164c0..c8d34b8e899 100644 --- a/sys-devel/bmake/bmake-20200318.ebuild +++ b/sys-devel/bmake/bmake-20200318.ebuild @@ -32,7 +32,12 @@ src_compile() { src_test() { cd unit-tests || die - LC_ALL=C env -u A "${S}"/bmake -r -m all || die "tests compilation failed" + + # the 'ternary' test uses ${A} internally, which + # conflicts with Gentoo's ${A}, hence unset it for + # the tests temporarily. + env -u A MAKEFLAGS= \ + "${S}"/bmake -r -m / TEST_MAKE="${S}"/bmake test || die "tests compilation failed" } src_install() {