From 0516fa7771ec6b7f2468ad5f5a93140633970a13 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Sat, 16 Feb 2013 11:44:48 -0800 Subject: [PATCH] fix(sdk_lib/make_chroot): remove early git emerging git seems to work fine, remove this early git hack Change-Id: I1ec6a45724be292ce00d803e9161413c67804469 --- sdk_lib/make_chroot.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sdk_lib/make_chroot.sh b/sdk_lib/make_chroot.sh index 7005af9825..8e9211f869 100755 --- a/sdk_lib/make_chroot.sh +++ b/sdk_lib/make_chroot.sh @@ -442,15 +442,15 @@ early_enter_chroot eselect python set python2.6 # We also need to do this before the toolchain as those will sometimes also # fetch via remote git trees (for some bot configs). if [[ ! -e "${FLAGS_chroot}/usr/bin/git" ]]; then - info "Updating early git" - USE="-curl -webdav" early_enter_chroot $EMERGE_CMD -uNv $USEPKG dev-vcs/git + info "Installing early git" + early_enter_chroot $EMERGE_CMD -uNv $USEPKG dev-vcs/git early_enter_chroot $EMERGE_CMD -uNv $USEPKG --select $EMERGE_JOBS \ dev-libs/openssl net-misc/curl # (Re-)emerge the full version of git. - info "Updating full version of git" - early_enter_chroot $EMERGE_CMD -uNv $USEPKG dev-vcs/git net-misc/openssh --select $EMERGE_JOBS + info "Installing openssh" + early_enter_chroot $EMERGE_CMD -uNv $USEPKG net-misc/openssh --select $EMERGE_JOBS fi info "Updating host toolchain"