diff options
author | 2010-07-01 09:23:37 +0000 | |
---|---|---|
committer | 2010-07-01 09:23:37 +0000 | |
commit | c1b31de7951b70761fdd63ce1573a2a62fb15fb0 (patch) | |
tree | 63370b78926e12569f7b8f37295e7a205c1873e7 /eclass/bzr.eclass | |
parent | keyworded ~arch for x86, bug 323211 (diff) | |
download | gentoo-2-c1b31de7951b70761fdd63ce1573a2a62fb15fb0.tar.gz gentoo-2-c1b31de7951b70761fdd63ce1573a2a62fb15fb0.tar.bz2 gentoo-2-c1b31de7951b70761fdd63ce1573a2a62fb15fb0.zip |
Remove check for old fetch directory, people should have migrated up to now
Diffstat (limited to 'eclass/bzr.eclass')
-rw-r--r-- | eclass/bzr.eclass | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/eclass/bzr.eclass b/eclass/bzr.eclass index 01e34e5fc923..3aa14b83db05 100644 --- a/eclass/bzr.eclass +++ b/eclass/bzr.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/bzr.eclass,v 1.8 2010/03/05 09:35:23 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/bzr.eclass,v 1.9 2010/07/01 09:23:37 fauli Exp $ # # @ECLASS: bzr.eclass # @MAINTAINER: @@ -212,11 +212,6 @@ bzr_fetch() { # an older version of bzr.eclass) if [[ ! -d ${EBZR_BRANCH_DIR} ]] ; then bzr_initial_fetch "${EBZR_REPO_URI}" "${EBZR_BRANCH_DIR}" - elif [[ ${EBZR_FETCH_CMD} == *lightweight* \ - && -d ${EBZR_BRANCH_DIR}/.bzr/repository ]]; then - einfo "Re-fetching the branch to save space..." - rm -rf "${EBZR_BRANCH_DIR}" - bzr_initial_fetch "${EBZR_REPO_URI}" "${EBZR_BRANCH_DIR}" else bzr_update "${EBZR_REPO_URI}" "${EBZR_BRANCH_DIR}" fi |