diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2016-08-05 21:21:09 +0100 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2016-08-05 21:21:09 +0100 |
commit | 4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58 (patch) | |
tree | 050659d616f0f29304eac01afa612943691510d6 | |
parent | c653214713d3d6a910d60499f0b3bf5f69354e58 (diff) | |
download | gentoo-4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58.tar.gz gentoo-4f91edf6fcbc417d8046c58fb6fd1dcc99fd7e58.tar.xz |
games-mud/tf: fix PATCHES variable not to use glob on DISTDIR
Noticed egencache warning today:
/gentoo-ebuilds/gentoo/games-mud/tf/tf-50_beta8-r2.ebuild:
line 32: no match: /gentoo/distfiles/tf-all*patch.txt
Package-Manager: portage-2.3.0
-rw-r--r-- | games-mud/tf/tf-50_beta8-r2.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/games-mud/tf/tf-50_beta8-r2.ebuild b/games-mud/tf/tf-50_beta8-r2.ebuild index 51ae5aebdbe..7b3d1c9ceee 100644 --- a/games-mud/tf/tf-50_beta8-r2.ebuild +++ b/games-mud/tf/tf-50_beta8-r2.ebuild @@ -26,7 +26,8 @@ DEPEND=${RDEPEND} S=${WORKDIR}/${MY_P} PATCHES=( - "${DISTDIR}"/tf-all*patch.txt + "${DISTDIR}"/tf-allrootpatch.txt + "${DISTDIR}"/tf-allsrcpatch.txt "${FILESDIR}"/${P}-pcre.patch "${FILESDIR}"/${P}-stdarg.patch ) |