diff options
author | Donnie Berkholz <donnie@comet.(none)> | 2006-05-12 02:05:32 -0700 |
---|---|---|
committer | Donnie Berkholz <donnie@comet.(none)> | 2006-05-12 02:05:32 -0700 |
commit | f04ffcbf5834f7183247067d23595fa2ad9515d0 (patch) | |
tree | 517cd119a1c7e51a5e413a23a955a6377581369d /eclass | |
parent | Rewrite eclass from scratch, based on subversion.eclass, to clear up concerns (diff) | |
download | dberkholz-f04ffcbf5834f7183247067d23595fa2ad9515d0.tar.gz dberkholz-f04ffcbf5834f7183247067d23595fa2ad9515d0.tar.bz2 dberkholz-f04ffcbf5834f7183247067d23595fa2ad9515d0.zip |
No such thing as git-export.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/git.eclass | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/eclass/git.eclass b/eclass/git.eclass index e4ebefc..57a6f7d 100644 --- a/eclass/git.eclass +++ b/eclass/git.eclass @@ -162,8 +162,6 @@ function git_fetch() { einfo " working copy: ${EGIT_STORE_DIR}/${EGIT_CO_DIR}" # export to the ${WORKDIR} - # "git export" has a bug. see http://bugs.gentoo.org/119236 - #git export "${EGIT_STORE_DIR}/${EGIT_CO_DIR}" "${S}" || die "${EGIT}: can't export to ${S}." rsync -a --exclude=".git/" "${EGIT_STORE_DIR}/${EGIT_CO_DIR}/" "${S}" || die "${EGIT}: can't export to ${S}." echo |