summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2005-02-04 16:26:45 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2005-02-04 16:26:45 +0000
commitd0b68bfb81faff69eb8a690c58b43dda8e8c868b (patch)
treede57044cf214e777755684abcc88738a676d58c8 /scripts
parentFixed typo on line 144 and 146. (diff)
downloadhistorical-d0b68bfb81faff69eb8a690c58b43dda8e8c868b.tar.gz
historical-d0b68bfb81faff69eb8a690c58b43dda8e8c868b.tar.bz2
historical-d0b68bfb81faff69eb8a690c58b43dda8e8c868b.zip
Fixed status messages.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/bootstrap-new.sh8
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 -------------------------------------------------------------------------------