commit: 1328f5ce8c0fed6c3a374a7bc2a13c54ddf89893 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Jun 8 08:51:30 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Jun 8 08:51:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1328f5ce
app-emulation/libguestfs: don't call AR directly Closes: https://bugs.gentoo.org/794877 Signed-off-by: Sam James <sam <AT> gentoo.org> app-emulation/libguestfs/libguestfs-1.44.1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-emulation/libguestfs/libguestfs-1.44.1.ebuild b/app-emulation/libguestfs/libguestfs-1.44.1.ebuild index 57aa2f01a44..3678f17814d 100644 --- a/app-emulation/libguestfs/libguestfs-1.44.1.ebuild +++ b/app-emulation/libguestfs/libguestfs-1.44.1.ebuild @@ -6,7 +6,7 @@ EAPI=7 LUA_COMPAT=( lua5-1 ) PYTHON_COMPAT=( python3_{7,8,9} ) -inherit autotools bash-completion-r1 l10n linux-info lua-single perl-functions python-single-r1 xdg-utils flag-o-matic +inherit autotools bash-completion-r1 l10n linux-info lua-single perl-functions python-single-r1 toolchain-funcs xdg-utils flag-o-matic MY_PV_1="$(ver_cut 1-2)" MY_PV_2="$(ver_cut 2)" @@ -136,6 +136,9 @@ src_prepare() { } src_configure() { + # bug #794877 + tc-export AR + # Disable feature test for kvm for more reason # i.e: not loaded module in __build__ time, # build server not supported kvm, etc. ...
