diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2017-02-25 10:20:37 +0100 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2017-02-25 10:20:37 +0100 |
commit | 9b69e6921f595e6d06d2eebbac8100cc9590ec20 (patch) | |
tree | ab219c0f49160d00526381e6f6fe090d0f323578 /app-admin | |
parent | app-misc/todo: rename binary due to a collision with another ebuild. (diff) | |
download | gentoo-9b69e6921f595e6d06d2eebbac8100cc9590ec20.tar.gz gentoo-9b69e6921f595e6d06d2eebbac8100cc9590ec20.tar.bz2 gentoo-9b69e6921f595e6d06d2eebbac8100cc9590ec20.zip |
app-admin/cronolog: don't use an array to stuff patches in but call epatch directly.
Package-Manager: portage-2.3.3
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/cronolog/cronolog-1.6.2-r5.ebuild | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild index 387ea3582af4..3a00382de205 100644 --- a/app-admin/cronolog/cronolog-1.6.2-r5.ebuild +++ b/app-admin/cronolog/cronolog-1.6.2-r5.ebuild @@ -14,16 +14,11 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~x86" -MY_PATCHES=( - "${FILESDIR}/${PV}-patches"/*.txt - "${FILESDIR}/${P}-umask.patch" -) - DOCS=( AUTHORS ChangeLog INSTALL NEWS README TODO ) src_prepare() { default - epatch "${MY_PATCHES[@]}" + epatch "${FILESDIR}/${PV}-patches"/*.txt "${FILESDIR}/${P}-umask.patch" eautoreconf } |