diff options
author | Ulrich Müller <ulm@gentoo.org> | 2011-02-02 19:26:53 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2011-02-02 19:26:53 +0000 |
commit | cc322309bff59d7cf4e6de60de88b1f96ab2691f (patch) | |
tree | bee445c69897fad5b8c6138f6b503ed73d6753ac /eclass/git.eclass | |
parent | Update iptables depend for the checksum-fill option that libvirt tries to use... (diff) | |
download | gentoo-2-cc322309bff59d7cf4e6de60de88b1f96ab2691f.tar.gz gentoo-2-cc322309bff59d7cf4e6de60de88b1f96ab2691f.tar.bz2 gentoo-2-cc322309bff59d7cf4e6de60de88b1f96ab2691f.zip |
Remove superfluous "time" statement (with permission from scarabeus).
Fix typo in case statement.
Diffstat (limited to 'eclass/git.eclass')
-rw-r--r-- | eclass/git.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/git.eclass b/eclass/git.eclass index 29aaf2a5169c..a238b822478b 100644 --- a/eclass/git.eclass +++ b/eclass/git.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/git.eclass,v 1.50 2011/02/01 14:22:02 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/git.eclass,v 1.51 2011/02/02 19:26:53 ulm Exp $ # @ECLASS: git.eclass # @MAINTAINER: @@ -25,7 +25,7 @@ EXPORTED_FUNCTIONS="src_unpack" case "${EAPI:-0}" in 4|3|2) EXPORTED_FUNCTIONS="${EXPORTED_FUNCTIONS} src_prepare" ;; 1|0) ;; - :) DEPEND="EAPI-UNSUPPORTED" ;; + *) DEPEND="EAPI-UNSUPPORTED" ;; esac EXPORT_FUNCTIONS ${EXPORTED_FUNCTIONS} @@ -359,7 +359,7 @@ git_fetch() { if [[ -n ${EGIT_HAS_SUBMODULES} ]]; then pushd "${GIT_DIR}" &> /dev/null debug-print "rsync -rlpgo . \"${S}\"" - time rsync -rlpgo . "${S}" + rsync -rlpgo . "${S}" popd &> /dev/null else unset GIT_DIR |