diff options
author | Marty E. Plummer <hanetzer@startmail.com> | 2018-06-02 19:03:35 -0500 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2018-06-08 21:54:25 +0100 |
commit | 5439962f358fe0dc834fbe1f8619cfdb5e1b4719 (patch) | |
tree | 507d4b885a29c9ea3005eeffb706f56333df23f3 /eclass/toolchain-glibc.eclass | |
parent | toolchain-binutils.eclass: drop git-2 (diff) | |
download | gentoo-5439962f358fe0dc834fbe1f8619cfdb5e1b4719.tar.gz gentoo-5439962f358fe0dc834fbe1f8619cfdb5e1b4719.tar.bz2 gentoo-5439962f358fe0dc834fbe1f8619cfdb5e1b4719.zip |
toolchain-glibc.eclass: remove git logic
The git logic is handled in the live ebuild directly, and the only use
of this eclass is in non-live ebuilds. In fact, the two newest non-live
ebuilds do not make use of this eclass at all, and as far as I can see
nowhere in the history of this file does it inherit git-2 at all.
Diffstat (limited to 'eclass/toolchain-glibc.eclass')
-rw-r--r-- | eclass/toolchain-glibc.eclass | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/eclass/toolchain-glibc.eclass b/eclass/toolchain-glibc.eclass index d75ca2eefdf5..5f0e0cfd5cd5 100644 --- a/eclass/toolchain-glibc.eclass +++ b/eclass/toolchain-glibc.eclass @@ -667,16 +667,7 @@ toolchain-glibc_do_src_unpack() { # Check NPTL support _before_ we unpack things to save some time want_nptl && check_nptl_support - if [[ -n ${EGIT_REPO_URIS} ]] ; then - local i d - for ((i=0; i<${#EGIT_REPO_URIS[@]}; ++i)) ; do - EGIT_REPO_URI=${EGIT_REPO_URIS[$i]} - EGIT_SOURCEDIR=${EGIT_SOURCEDIRS[$i]} - git-2_src_unpack - done - else - unpack_pkg - fi + unpack_pkg cd "${S}" touch locale/C-translit.h #185476 #218003 |