Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-mud/tf/
Date: Fri, 05 Aug 2016 20:21:30
Message-Id: 1470428469.4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58.slyfox@gentoo
1 commit: 4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 5 20:21:09 2016 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 5 20:21:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f91edf6
7
8 games-mud/tf: fix PATCHES variable not to use glob on DISTDIR
9
10 Noticed egencache warning today:
11
12 /gentoo-ebuilds/gentoo/games-mud/tf/tf-50_beta8-r2.ebuild:
13 line 32: no match: /gentoo/distfiles/tf-all*patch.txt
14
15 Package-Manager: portage-2.3.0
16
17 games-mud/tf/tf-50_beta8-r2.ebuild | 3 ++-
18 1 file changed, 2 insertions(+), 1 deletion(-)
19
20 diff --git a/games-mud/tf/tf-50_beta8-r2.ebuild b/games-mud/tf/tf-50_beta8-r2.ebuild
21 index 51ae5ae..7b3d1c9 100644
22 --- a/games-mud/tf/tf-50_beta8-r2.ebuild
23 +++ b/games-mud/tf/tf-50_beta8-r2.ebuild
24 @@ -26,7 +26,8 @@ DEPEND=${RDEPEND}
25 S=${WORKDIR}/${MY_P}
26
27 PATCHES=(
28 - "${DISTDIR}"/tf-all*patch.txt
29 + "${DISTDIR}"/tf-allrootpatch.txt
30 + "${DISTDIR}"/tf-allsrcpatch.txt
31 "${FILESDIR}"/${P}-pcre.patch
32 "${FILESDIR}"/${P}-stdarg.patch
33 )