diff options
Diffstat (limited to 'scripts/bootstrap-new.sh')
-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 ------------------------------------------------------------------------------- |