commit: d28600c6abe90135bac0f6d2360472b9c39db4b8
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Jun 25 11:07:08 2015 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Thu Jun 25 11:07:08 2015 +0000
URL: https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=d28600c6
[eclass] Fix patch SRC_URI creation.
eclass/github.eclass | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/eclass/github.eclass b/eclass/github.eclass
index 6c302f5..7f33ab5 100644
--- a/eclass/github.eclass
+++ b/eclass/github.eclass
@@ -80,7 +80,7 @@ _calculate_patches_uri() {
if [[ -n $GH_PATCHES ]]; then
_GH_PATCHES=
for gh_commit in "${GH_PATCHES[@]}"; do
- SRC_URI=+"
https://github.com/${GH_USER}/${GH_REPO}/commit/${gh_commit}.patch ->
${PN}-${gh_commit}.patch"
+ SRC_URI+="
https://github.com/${GH_USER}/${GH_REPO}/commit/${gh_commit}.patch ->
${PN}-${gh_commit}.patch"
_GH_PATCHES+=( "${DISTDIR}"/${PN}-${gh_commit}.patch )
done
fi