From cc322309bff59d7cf4e6de60de88b1f96ab2691f Mon Sep 17 00:00:00 2001 From: Ulrich Müller Date: Wed, 2 Feb 2011 19:26:53 +0000 Subject: Remove superfluous "time" statement (with permission from scarabeus). Fix typo in case statement. --- eclass/git.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'eclass') 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 -- cgit v1.2.3-65-gdbad