diff options
author | Tim Harder <radhermit@gentoo.org> | 2018-03-19 10:31:10 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2018-03-19 10:33:50 -0400 |
commit | 26af396dfd97d5a455a6b942140c65302bf4a8b2 (patch) | |
tree | 4c762146c4033dbc2ecefd22fb8877f13ce5fc48 /sys-fs/fuse | |
parent | sys-fs/fuse-common: filter lto from LDFLAGS as it's unsupported (diff) | |
download | gentoo-26af396dfd97d5a455a6b942140c65302bf4a8b2.tar.gz gentoo-26af396dfd97d5a455a6b942140c65302bf4a8b2.tar.bz2 gentoo-26af396dfd97d5a455a6b942140c65302bf4a8b2.zip |
sys-fs/fuse: filter lto from LDFLAGS as it's unsupported
Diffstat (limited to 'sys-fs/fuse')
-rw-r--r-- | sys-fs/fuse/fuse-3.2.1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys-fs/fuse/fuse-3.2.1.ebuild b/sys-fs/fuse/fuse-3.2.1.ebuild index e7a9f371ae7b..c60d8702e866 100644 --- a/sys-fs/fuse/fuse-3.2.1.ebuild +++ b/sys-fs/fuse/fuse-3.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit meson multilib-minimal +inherit meson multilib-minimal flag-o-matic DESCRIPTION="An interface for filesystems implemented in userspace" HOMEPAGE="https://github.com/libfuse/libfuse" @@ -22,6 +22,9 @@ DOCS=( AUTHORS ChangeLog.rst README.md doc/README.NFS doc/kernel.txt ) src_prepare() { default + # lto not supported yet -- https://github.com/libfuse/libfuse/issues/198 + filter-flags -flto + # passthough_ll is broken on systems with 32-bit pointers cat /dev/null > example/meson.build || die } |