Gentoo Archives: gentoo-portage-dev

From: Zac Medico <zmedico@g.o>
To: gentoo-portage-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: Re: [gentoo-portage-dev] [PATCH] eapply: Fix typo
Date: Sat, 14 Nov 2015 21:32:38
Message-Id: 5647A870.7030604@gentoo.org
In Reply to: [gentoo-portage-dev] [PATCH] eapply: Fix typo by "Michał Górny"
1 On 11/14/2015 01:30 PM, Michał Górny wrote:
2 > ---
3 > bin/phase-helpers.sh | 3 ++-
4 > 1 file changed, 2 insertions(+), 1 deletion(-)
5 >
6 > diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
7 > index 1d3c976..6d563b5 100644
8 > --- a/bin/phase-helpers.sh
9 > +++ b/bin/phase-helpers.sh
10 > @@ -1037,7 +1037,8 @@ if ___eapi_has_eapply; then
11 > die "eapply: no files specified"
12 > fi
13 >
14 > - for i in "${files[@]}"; do
15 > + local f
16 > + for f in "${files[@]}"; do
17 > if [[ -d ${f} ]]; then
18 > _eapply_get_files() {
19 > local LC_ALL=POSIX
20 >
21
22 Looks good.
23 --
24 Thanks,
25 Zac