diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-05-26 20:06:10 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-05-26 20:06:10 +0000 |
commit | 834247442c8605824aabbf3510cdf228ae41c983 (patch) | |
tree | 43b65c700994dc46633dc5008e33a47c13c014a6 /eclass/ccc.eclass | |
parent | adding Manifest (diff) | |
download | historical-834247442c8605824aabbf3510cdf228ae41c983.tar.gz historical-834247442c8605824aabbf3510cdf228ae41c983.tar.bz2 historical-834247442c8605824aabbf3510cdf228ae41c983.zip |
minor tweak, removing an einfo and reducing sleep.
Diffstat (limited to 'eclass/ccc.eclass')
-rw-r--r-- | eclass/ccc.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/ccc.eclass b/eclass/ccc.eclass index 07fa9084a113..293919372d52 100644 --- a/eclass/ccc.eclass +++ b/eclass/ccc.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ccc.eclass,v 1.2 2003/05/26 15:53:04 taviso Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ccc.eclass,v 1.3 2003/05/26 20:06:10 taviso Exp $ # # Authors: Tavis Ormandy <taviso@gentoo.org> # Aron Griffis <agriffis@gentoo.org> @@ -107,9 +107,8 @@ ccc-fixup() do einfo "Checking for changes to `basename ${i}`..." if [ -e "${i}.${suffix}" ]; then - einfo "Showing Diff..." diff -u ${i}.${suffix} ${i} - sleep 2 + sleep 1 fi done } |