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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3494158086 for ; Sat, 6 Nov 2021 04:41:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86B40E0900; Sat, 6 Nov 2021 04:41:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB75CE08F3 for ; Sat, 6 Nov 2021 04:41:39 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 560E53430D6 for ; Sat, 6 Nov 2021 04:41:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A65818E for ; Sat, 6 Nov 2021 04:41:35 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1636173088.a7ac720a5b83c5b83ca5df2273263161ff2c41d4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/lrzsz/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild X-VCS-Directories: net-dialup/lrzsz/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a7ac720a5b83c5b83ca5df2273263161ff2c41d4 X-VCS-Branch: master Date: Sat, 6 Nov 2021 04:41:35 +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: 9118ccc0-aeb0-4900-873f-5ef92ecb5cd9 X-Archives-Hash: bf9c5f3010406649194c39ea8184146a commit: a7ac720a5b83c5b83ca5df2273263161ff2c41d4 Author: Sam James gentoo org> AuthorDate: Sat Nov 6 04:31:28 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 6 04:31:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ac720a net-dialup/lrzsz: use 'emake', not 'make' Gets us error handling and other niceties for free. Signed-off-by: Sam James gentoo.org> net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild b/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild index b89e6b98f2c..9134cf53053 100644 --- a/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild +++ b/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild @@ -30,6 +30,7 @@ DOCS=( AUTHORS COMPATABILITY ChangeLog NEWS \ src_prepare() { default + # automake is unhappy if this is missing >> config.rpath || die # This is too old. Remove it so automake puts in a newer copy. @@ -43,13 +44,14 @@ src_prepare() { src_configure() { tc-export CC append-flags -Wstrict-prototypes + econf $(use_enable nls) } src_test() { - #Don't use check target. - #See bug #120748 before changing this function. - make vcheck || die "tests failed" + # Don't use check target. + # See bug #120748 before changing this function. + emake vcheck } src_install() {