Gentoo Archives: gentoo-portage-dev

From: "Michał Górny" <mgorny@g.o>
To: gentoo-portage-dev@l.g.o
Cc: "Michał Górny" <mgorny@g.o>
Subject: [gentoo-portage-dev] [PATCH] eapply: Fix typo
Date: Sat, 14 Nov 2015 21:30:57
Message-Id: 1447536644-2276-1-git-send-email-mgorny@gentoo.org
1 ---
2 bin/phase-helpers.sh | 3 ++-
3 1 file changed, 2 insertions(+), 1 deletion(-)
4
5 diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
6 index 1d3c976..6d563b5 100644
7 --- a/bin/phase-helpers.sh
8 +++ b/bin/phase-helpers.sh
9 @@ -1037,7 +1037,8 @@ if ___eapi_has_eapply; then
10 die "eapply: no files specified"
11 fi
12
13 - for i in "${files[@]}"; do
14 + local f
15 + for f in "${files[@]}"; do
16 if [[ -d ${f} ]]; then
17 _eapply_get_files() {
18 local LC_ALL=POSIX
19 --
20 2.6.3

Replies

Subject Author
Re: [gentoo-portage-dev] [PATCH] eapply: Fix typo Zac Medico <zmedico@g.o>