diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-07-18 20:43:00 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2003-07-18 20:43:00 +0000 |
commit | 16b3921fe40e6dd72857bf4419c1a647b8d276ba (patch) | |
tree | b5fb284126c7de7878b1a62a60684be0d999adc2 /eclass | |
parent | added amd64 (diff) | |
download | gentoo-2-16b3921fe40e6dd72857bf4419c1a647b8d276ba.tar.gz gentoo-2-16b3921fe40e6dd72857bf4419c1a647b8d276ba.tar.bz2 gentoo-2-16b3921fe40e6dd72857bf4419c1a647b8d276ba.zip |
Removed 'press enter' function
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index aea42addb964..f5f47db500e2 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.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/eutils.eclass,v 1.44 2003/07/18 18:42:10 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.45 2003/07/18 20:43:00 wolf31o2 Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -876,17 +876,3 @@ unpack_makeself() { local out="`tail +${skip} ${src} | gzip -cd | tar -x --no-same-owner -v -f -`" [ -z "${out}" ] && die "failure unpacking makeself ${shrtsrc} ('${ver}' +${skip})" } - -# Add a function to force the user to press RETURN. -# I basically needed this for the UT2003 ebuild to pause -# the ebuild until the user swapped the CD in the drive. -# I put it here in case anyone else could use it. -# wolf31o2@gentoo.org - -pressreturn() -{ - local REPLY - - echo -n "Press <RETURN> to continue..." - read REPLY -} |