diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-02-04 16:26:45 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-02-04 16:26:45 +0000 |
commit | 8c4fa4261d7774145fcfd0721bc5b4895ee54624 (patch) | |
tree | f3a02249e777a928f53c604e7f7958373a24d05c /scripts | |
parent | Fixed typo on line 144 and 146. (diff) | |
download | gentoo-2-8c4fa4261d7774145fcfd0721bc5b4895ee54624.tar.gz gentoo-2-8c4fa4261d7774145fcfd0721bc5b4895ee54624.tar.bz2 gentoo-2-8c4fa4261d7774145fcfd0721bc5b4895ee54624.zip |
Fixed status messages.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/bootstrap-new.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/bootstrap-new.sh b/scripts/bootstrap-new.sh index e28f617f8be8..c59a38ac28f5 100644 --- a/scripts/bootstrap-new.sh +++ b/scripts/bootstrap-new.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-new.sh,v 1.2 2005/02/04 16:22:46 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-new.sh,v 1.3 2005/02/04 16:26:45 wolf31o2 Exp $ # people who were here: # (drobbins, 06 Jun 2003) @@ -26,7 +26,7 @@ fi show_status() { local num=$1 shift - echo " [[ ($num/6) $* ]]" + echo " [[ ($num/4) $* ]]" } # Track progress of the bootstrap process to allow for @@ -78,7 +78,7 @@ for opt in "$@" ; do --resume|-r) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} --usepkg --buildpkg";; --verbose|-v) STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS} -v"; V_ECHO=v_echo;; --version) - cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-new.sh,v 1.2 2005/02/04 16:22:46 wolf31o2 Exp $" + cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-new.sh,v 1.3 2005/02/04 16:26:45 wolf31o2 Exp $" cvsver=${cvsver##*,v } einfo "Gentoo ${GENTOO_VERS} bootstrap ${cvsver%%Exp*}" exit 0 @@ -315,7 +315,7 @@ fi # ncurses-5.3 and up also build c++ bindings, so we need to rebuild it export USE="${ORIGUSE}" if [ ${BOOTSTRAP_STAGE} -le 3 ] ; then - show_status 6 Re-Emerging C++ apps + show_status 3 Re-Emerging C++ apps STRAP_EMERGE_OPTS="${STRAP_EMERGE_OPTS/-e//}" ${V_ECHO} emerge ${STRAP_EMERGE_OPTS} ${myNCURSES} || cleanup 1 echo ------------------------------------------------------------------------------- |