Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/lrzsz/
Date: Sat, 06 Nov 2021 04:41:43
Message-Id: 1636173088.a7ac720a5b83c5b83ca5df2273263161ff2c41d4.sam@gentoo
1 commit: a7ac720a5b83c5b83ca5df2273263161ff2c41d4
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 6 04:31:28 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 04:31:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ac720a
7
8 net-dialup/lrzsz: use 'emake', not 'make'
9
10 Gets us error handling and other niceties for free.
11
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild | 8 +++++---
15 1 file changed, 5 insertions(+), 3 deletions(-)
16
17 diff --git a/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild b/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild
18 index b89e6b98f2c..9134cf53053 100644
19 --- a/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild
20 +++ b/net-dialup/lrzsz/lrzsz-0.12.20-r4.ebuild
21 @@ -30,6 +30,7 @@ DOCS=( AUTHORS COMPATABILITY ChangeLog NEWS \
22
23 src_prepare() {
24 default
25 +
26 # automake is unhappy if this is missing
27 >> config.rpath || die
28 # This is too old. Remove it so automake puts in a newer copy.
29 @@ -43,13 +44,14 @@ src_prepare() {
30 src_configure() {
31 tc-export CC
32 append-flags -Wstrict-prototypes
33 +
34 econf $(use_enable nls)
35 }
36
37 src_test() {
38 - #Don't use check target.
39 - #See bug #120748 before changing this function.
40 - make vcheck || die "tests failed"
41 + # Don't use check target.
42 + # See bug #120748 before changing this function.
43 + emake vcheck
44 }
45
46 src_install() {