diff options
author | Ionen Wolkens <sudinave@gmail.com> | 2021-04-15 04:46:53 -0400 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2021-04-15 12:51:19 +0300 |
commit | 8d4b9416fc13c09d4915c615de3f9cb499eaa18b (patch) | |
tree | 404504fe6b8f3e4542fed381345232c76aa081fd /net-misc/x11-ssh-askpass | |
parent | dev-python/cx_Freeze: version bump (diff) | |
download | gentoo-8d4b9416fc13c09d4915c615de3f9cb499eaa18b.tar.gz gentoo-8d4b9416fc13c09d4915c615de3f9cb499eaa18b.tar.bz2 gentoo-8d4b9416fc13c09d4915c615de3f9cb499eaa18b.zip |
net-misc/x11-ssh-askpass: remove unneeded command call
simplifying using xmkmf -a here was not a good idea, surprising
that it worked at all preventing this from being noticed.
Fixes: 9d02b021fb62f75f7df091530f19b0582aa601af
Closes: https://bugs.gentoo.org/782988
Signed-off-by: Ionen Wolkens <sudinave@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/20391
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'net-misc/x11-ssh-askpass')
-rw-r--r-- | net-misc/x11-ssh-askpass/x11-ssh-askpass-1.2.4.1-r2.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
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 index 4d294cbd5075..a799f42b4c5e 100644 --- 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 @@ -27,10 +27,11 @@ src_configure() { econf --libexecdir=/usr/"$(get_libdir)"/misc \ --disable-installing-app-defaults CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \ - IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf -a || die "xmkmf failed" + IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf || die "xmkmf failed" } src_compile() { + emake includes emake CC="$(tc-getCC)" CDEBUGFLAGS="${CFLAGS}" } |