diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-10 07:31:14 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2020-03-10 07:35:06 +0000 |
commit | f6ce8a59558a0472d72be70e9568aa3ef566b108 (patch) | |
tree | c6690a6ef02836952d98d42aa43a3a32039f3d5b /sys-devel/binutils | |
parent | dev-ruby/hashie: add 4.1.0 (diff) | |
download | gentoo-f6ce8a59558a0472d72be70e9568aa3ef566b108.tar.gz gentoo-f6ce8a59558a0472d72be70e9568aa3ef566b108.tar.bz2 gentoo-f6ce8a59558a0472d72be70e9568aa3ef566b108.zip |
sys-devel/binutils: fix live ebuild link
https:// scema is not supported by sourceware's git. Use git:// instead.
Package-Manager: Portage-2.3.93, Repoman-2.3.20
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
Diffstat (limited to 'sys-devel/binutils')
-rw-r--r-- | sys-devel/binutils/binutils-9999.ebuild | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys-devel/binutils/binutils-9999.ebuild b/sys-devel/binutils/binutils-9999.ebuild index 7e5b921ee5f7..569c1c82680f 100644 --- a/sys-devel/binutils/binutils-9999.ebuild +++ b/sys-devel/binutils/binutils-9999.ebuild @@ -24,14 +24,16 @@ PATCH_BINUTILS_VER=9999 case ${PV} in 9999) - EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git" + # sourceware.org does not have https:// today. + EGIT_REPO_URI="git://sourceware.org/git/binutils-gdb.git" inherit git-r3 S=${WORKDIR}/binutils EGIT_CHECKOUT_DIR=${S} SLOT=${PV} ;; *.9999) - EGIT_REPO_URI="https://sourceware.org/git/binutils-gdb.git" + # sourceware.org does not have https:// today. + EGIT_REPO_URI="git://sourceware.org/git/binutils-gdb.git" inherit git-r3 S=${WORKDIR}/binutils EGIT_CHECKOUT_DIR=${S} |