commit: 513b4eb21f56a56cb6b363ed0fb690240330cabe
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 25 11:46:19 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jun 25 11:46:19 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=513b4eb2
[eclass] Fix incomplete renaming.
eclass/github.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/github.eclass b/eclass/github.eclass
index 4b4ac68..3b06e06 100644
--- a/eclass/github.eclass
+++ b/eclass/github.eclass
@@ -95,9 +95,9 @@ _calculate_patches_uri() {
done
fi
if [[ -n $GH_PULLREQ ]]; then
- for gh_pullreqid in "${GH_PULLREQS[@]}"; do
+ for gh_pullreq in "${GH_PULLREQS[@]}"; do
SRC_URI+="
https://github.com/${GH_USER}/${GH_REPO}/pull//${gh_pullreq}.patch ->
${PN}-pr-${gh_pullreq}.patch"
-
_GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreqid}.patch)
+ _GH_PATCHES+=("${DISTDIR}"/${PN}-pr-${gh_pullreq}.patch)
done
fi
}