Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/x11-ssh-askpass/
Date: Thu, 15 Apr 2021 09:51:30
Message-Id: 1618480279.8d4b9416fc13c09d4915c615de3f9cb499eaa18b.juippis@gentoo
1 commit: 8d4b9416fc13c09d4915c615de3f9cb499eaa18b
2 Author: Ionen Wolkens <sudinave <AT> gmail <DOT> com>
3 AuthorDate: Thu Apr 15 08:46:53 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 15 09:51:19 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d4b9416
7
8 net-misc/x11-ssh-askpass: remove unneeded command call
9
10 simplifying using xmkmf -a here was not a good idea, surprising
11 that it worked at all preventing this from being noticed.
12
13 Fixes: 9d02b021fb62f75f7df091530f19b0582aa601af
14 Closes: https://bugs.gentoo.org/782988
15 Signed-off-by: Ionen Wolkens <sudinave <AT> gmail.com>
16 Closes: https://github.com/gentoo/gentoo/pull/20391
17 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
18
19 net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild | 3 ++-
20 1 file changed, 2 insertions(+), 1 deletion(-)
21
22 diff --git a/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild
23 index 4d294cbd507..a799f42b4c5 100644
24 --- a/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild
25 +++ b/net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild
26 @@ -27,10 +27,11 @@ src_configure() {
27 econf --libexecdir=/usr/"$(get_libdir)"/misc \
28 --disable-installing-app-defaults
29 CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
30 - IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf -a || die "xmkmf failed"
31 + IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf || die "xmkmf failed"
32 }
33
34 src_compile() {
35 + emake includes
36 emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS}"
37 }