commit: 1ec92b8e120f36075e036fca954a21d1560de6ca Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Oct 24 07:53:47 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Oct 24 07:53:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec92b8e
sys-fs/lxcfs: append LFS flags (fix x86 support) Closes: https://bugs.gentoo.org/819762 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-fs/lxcfs/lxcfs-4.0.11.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-fs/lxcfs/lxcfs-4.0.11.ebuild b/sys-fs/lxcfs/lxcfs-4.0.11.ebuild index b351821cc74..687b1c351bb 100644 --- a/sys-fs/lxcfs/lxcfs-4.0.11.ebuild +++ b/sys-fs/lxcfs/lxcfs-4.0.11.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools systemd verify-sig +inherit autotools flag-o-matic systemd verify-sig DESCRIPTION="FUSE filesystem for LXC" HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/ https://github.com/lxc/lxcfs/" @@ -30,6 +30,9 @@ src_prepare() { } src_configure() { + # Needed for x86 support, bug #819762 + append-lfs-flags + # Without the localstatedir the filesystem isn't mounted correctly # Without with-distro ./configure will fail when cross-compiling econf --localstatedir=/var --with-distro=gentoo --disable-static
