diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-04-18 18:22:14 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-04-18 18:22:21 -0400 |
commit | 6b2446cdc15c0c171f7e426687dc6b755bbf153d (patch) | |
tree | a98483336e92195c9db88451db93c86014e4a08d /sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild | |
parent | sys-fs/f2fs-tools: drop old <1.6.0 versions (diff) | |
download | gentoo-6b2446cdc15c0c171f7e426687dc6b755bbf153d.tar.gz gentoo-6b2446cdc15c0c171f7e426687dc6b755bbf153d.tar.bz2 gentoo-6b2446cdc15c0c171f7e426687dc6b755bbf153d.zip |
sys-fs/f2fs-tools: fix build w/newer glibc #580338
Diffstat (limited to 'sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild')
-rw-r--r-- | sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild b/sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild index 793c43db22ce..a5edab40345b 100644 --- a/sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild +++ b/sys-fs/f2fs-tools/f2fs-tools-1.6.1.ebuild @@ -4,7 +4,7 @@ EAPI=5 -inherit multilib +inherit multilib eutils DESCRIPTION="Tools for Flash-Friendly File System (F2FS)" HOMEPAGE="https://git.kernel.org/?p=linux/kernel/git/jaegeuk/f2fs-tools.git;a=summary" @@ -15,6 +15,10 @@ SLOT="0/0" KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86" IUSE="" +src_prepare() { + epatch "${FILESDIR}"/${P}-sysmacros.patch #580338 +} + src_configure() { #This is required to install to /sbin, bug #481110 econf --prefix=/ --includedir=/usr/include |