From 611ed7698e157aa96f558d57298005030a034b70 Mon Sep 17 00:00:00 2001 From: Michael Marineau Date: Sun, 5 Jul 2015 17:14:53 -0700 Subject: [PATCH] enter_chroot: remove subversion config goo We do not have any svn based live ebuilds that require credentials which I presume is the only reason for shuffling svn configs like this. --- sdk_lib/enter_chroot.sh | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/sdk_lib/enter_chroot.sh b/sdk_lib/enter_chroot.sh index 036d6d3255..ca3c20d84d 100755 --- a/sdk_lib/enter_chroot.sh +++ b/sdk_lib/enter_chroot.sh @@ -316,21 +316,6 @@ setup_env() { fi fi - if [[ -d "$SUDO_HOME/.subversion" ]]; then - TARGET="/home/${SUDO_USER}/.subversion" - setup_mount "${SUDO_HOME}/.subversion" "--bind" "${TARGET}" - # Symbolic-link the .subversion directory so sandboxed subversion.class - # clients can use it. - for d in \ - "${FLAGS_cache_dir}"/distfiles/{host,target}/svn-src/"${SUDO_USER}"; do - if [[ ! -L "${d}/.subversion" ]]; then - rm -rf "${d}/.subversion" - user_mkdir "${d}" - user_symlink /home/${SUDO_USER}/.subversion "${d}/.subversion" - fi - done - fi - # Mount GnuPG's data directory for signing uploads if [[ -d "$SUDO_HOME/.gnupg" ]]; then debug "Mounting GnuPG"