diff options
author | 2024-11-26 11:42:04 +0800 | |
---|---|---|
committer | 2024-11-25 23:39:17 -0500 | |
commit | 815f7e4c1ec9cc8b7ea72de2c21a8c1d16fa622a (patch) | |
tree | 155776a328730c593550b3a5d5d3949ba2042d71 /sys-process | |
parent | net-p2p/qbittorrent: add 5.0.2 (diff) | |
download | gentoo-815f7e4c1ec9cc8b7ea72de2c21a8c1d16fa622a.tar.gz gentoo-815f7e4c1ec9cc8b7ea72de2c21a8c1d16fa622a.tar.bz2 gentoo-815f7e4c1ec9cc8b7ea72de2c21a8c1d16fa622a.zip |
sys-process/runit: don't call AR/RANLIB directly
Closes: https://bugs.gentoo.org/941150
Closes: https://bugs.gentoo.org/941151
Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/39476
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'sys-process')
-rw-r--r-- | sys-process/runit/runit-2.1.2-r6.ebuild | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys-process/runit/runit-2.1.2-r6.ebuild b/sys-process/runit/runit-2.1.2-r6.ebuild index 018348aa5796..968540e0b513 100644 --- a/sys-process/runit/runit-2.1.2-r6.ebuild +++ b/sys-process/runit/runit-2.1.2-r6.ebuild @@ -47,6 +47,8 @@ src_configure() { echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die + sed -i -e "s:ar cr:$(tc-getAR) cr:" print-ar.sh || die + sed -i -e "s:ranlib :$(tc-getRANLIB) :" print-ar.sh || die } src_install() { |