diff options
author | Ronny (tastytea) Gutbrod <gentoo@tastytea.de> | 2021-04-29 21:01:10 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-03-23 01:08:05 +0000 |
commit | 4f8c49d13e49fc5818e759e3b6f6b4020a8b49cc (patch) | |
tree | cced034e7efe7556657f6c87f37b5eb915b1eeca /mail-mta/nullmailer | |
parent | net-p2p/qbittorrent: tighten minimum dep versions; add missing OpenSSL dep (diff) | |
download | gentoo-4f8c49d13e49fc5818e759e3b6f6b4020a8b49cc.tar.gz gentoo-4f8c49d13e49fc5818e759e3b6f6b4020a8b49cc.tar.bz2 gentoo-4f8c49d13e49fc5818e759e3b6f6b4020a8b49cc.zip |
mail-mta/nullmailer: Set environment variables AR and RANLIB.
The build systems falls back to `ar` and `ranlib` otherwise.
Closes: https://bugs.gentoo.org/668850
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo@tastytea.de>
Closes: https://github.com/gentoo/gentoo/pull/20604
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'mail-mta/nullmailer')
-rw-r--r-- | mail-mta/nullmailer/nullmailer-2.2-r2.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild b/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild index d92c894e445a..f06e6f5c175b 100644 --- a/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild +++ b/mail-mta/nullmailer/nullmailer-2.2-r2.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools flag-o-matic systemd +inherit autotools flag-o-matic systemd toolchain-funcs DESCRIPTION="Simple relay-only local mail transport agent" HOMEPAGE="http://untroubled.org/nullmailer/ https://github.com/bruceg/nullmailer" @@ -73,6 +73,11 @@ src_configure() { $(use_enable ssl tls) } +src_compile() { + tc-export AR RANLIB + default +} + src_install() { default |