diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2019-05-20 11:18:07 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2019-05-20 11:24:22 +0200 |
commit | b92b61d3254d6c5502dc12bb97bae6541c806f88 (patch) | |
tree | 2139ceede56284438576ff0b9ef5747db4d04a05 /sys-apps/file | |
parent | x11-misc/lightdm: Bump to version 1.30.0 (diff) | |
download | gentoo-b92b61d3254d6c5502dc12bb97bae6541c806f88.tar.gz gentoo-b92b61d3254d6c5502dc12bb97bae6541c806f88.tar.bz2 gentoo-b92b61d3254d6c5502dc12bb97bae6541c806f88.zip |
sys-apps/file: Bumped live ebuild to EAPI-7
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'sys-apps/file')
-rw-r--r-- | sys-apps/file/file-9999.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-apps/file/file-9999.ebuild b/sys-apps/file/file-9999.ebuild index e112905e6984..2244b217ecda 100644 --- a/sys-apps/file/file-9999.ebuild +++ b/sys-apps/file/file-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy ) DISTUTILS_OPTIONAL=1 @@ -123,5 +123,5 @@ multilib_src_install_all() { cd python || die distutils-r1_src_install fi - find "${ED}" -name "*.la" -delete || die + find "${ED}" -type f -name "*.la" -delete || die } |