diff options
author | Akinori Hattori <hattya@gentoo.org> | 2006-04-30 09:26:56 +0000 |
---|---|---|
committer | Akinori Hattori <hattya@gentoo.org> | 2006-04-30 09:26:56 +0000 |
commit | eddbd614adc9804856df70e0b893625f4d1a6669 (patch) | |
tree | 9bd3017a153919f7c0be9f12f700e13deca28e29 /eclass/subversion.eclass | |
parent | stable amd64 (diff) | |
download | gentoo-2-eddbd614adc9804856df70e0b893625f4d1a6669.tar.gz gentoo-2-eddbd614adc9804856df70e0b893625f4d1a6669.tar.bz2 gentoo-2-eddbd614adc9804856df70e0b893625f4d1a6669.zip |
add '/'
Diffstat (limited to 'eclass/subversion.eclass')
-rw-r--r-- | eclass/subversion.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/subversion.eclass b/eclass/subversion.eclass index fd24154757c4..69bacd937935 100644 --- a/eclass/subversion.eclass +++ b/eclass/subversion.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.30 2006/04/30 09:15:03 hattya Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/subversion.eclass,v 1.31 2006/04/30 09:26:56 hattya Exp $ ## --------------------------------------------------------------------------- # # Author: Akinori Hattori <hattya@gentoo.org> @@ -181,7 +181,7 @@ function subversion_svn_fetch() { # export to the ${WORKDIR} # "svn export" has a bug. see http://bugs.gentoo.org/119236 #svn export "${ESVN_STORE_DIR}/${ESVN_CO_DIR}" "${S}" || die "${ESVN}: can't export to ${S}." - rsync -a --exclude=".svn" "${ESVN_STORE_DIR}/${ESVN_CO_DIR}/" "${S}" || die "${ESVN}: can't export to ${S}." + rsync -a --exclude=".svn/" "${ESVN_STORE_DIR}/${ESVN_CO_DIR}/" "${S}" || die "${ESVN}: can't export to ${S}." echo } |