diff options
author | Tim Harder <radhermit@gentoo.org> | 2018-03-19 10:28:04 -0400 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2018-03-19 10:33:50 -0400 |
commit | 21b2ec200196e4f44e2d4c91814c9fab94b6cb49 (patch) | |
tree | 3f431041234fcd118a514de9c56e9028474c3e3a /sys-fs/fuse-common | |
parent | www-client/qutebrowser: bump 1.2.1 (diff) | |
download | gentoo-21b2ec200196e4f44e2d4c91814c9fab94b6cb49.tar.gz gentoo-21b2ec200196e4f44e2d4c91814c9fab94b6cb49.tar.bz2 gentoo-21b2ec200196e4f44e2d4c91814c9fab94b6cb49.zip |
sys-fs/fuse-common: filter lto from LDFLAGS as it's unsupported
Closes: https://bugs.gentoo.org/650874
Diffstat (limited to 'sys-fs/fuse-common')
-rw-r--r-- | sys-fs/fuse-common/fuse-common-3.2.1.ebuild | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sys-fs/fuse-common/fuse-common-3.2.1.ebuild b/sys-fs/fuse-common/fuse-common-3.2.1.ebuild index 8c95a00239d3..e2dc774e41a6 100644 --- a/sys-fs/fuse-common/fuse-common-3.2.1.ebuild +++ b/sys-fs/fuse-common/fuse-common-3.2.1.ebuild @@ -3,7 +3,7 @@ EAPI=6 -inherit meson udev +inherit meson udev flag-o-matic DESCRIPTION="Common files for multiple slots of sys-fs/fuse" HOMEPAGE="https://github.com/libfuse/libfuse" @@ -18,6 +18,13 @@ RDEPEND="!<sys-fs/fuse-2.9.7-r1:0" S=${WORKDIR}/fuse-${PV} +src_prepare() { + default + + # lto not supported yet -- https://github.com/libfuse/libfuse/issues/198 + filter-flags -flto +} + src_install() { newsbin "${BUILD_DIR}"/util/mount.fuse3 mount.fuse doman doc/mount.fuse.8 |