diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-02-04 16:22:46 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-02-04 16:22:46 +0000 |
commit | 04da3279690edced885ccd9ba6b47e659f5b742a (patch) | |
tree | 21108ee75e315f7b66d61948cccad70533db3279 /scripts | |
parent | version bump (diff) | |
download | gentoo-2-04da3279690edced885ccd9ba6b47e659f5b742a.tar.gz gentoo-2-04da3279690edced885ccd9ba6b47e659f5b742a.tar.bz2 gentoo-2-04da3279690edced885ccd9ba6b47e659f5b742a.zip |
Fixed typo on line 144 and 146.
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 fb4ea7483008..e28f617f8be8 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.1 2005/01/26 12:33:43 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-new.sh,v 1.2 2005/02/04 16:22:46 wolf31o2 Exp $ # people who were here: # (drobbins, 06 Jun 2003) @@ -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.1 2005/01/26 12:33:43 wolf31o2 Exp $" + cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-new.sh,v 1.2 2005/02/04 16:22:46 wolf31o2 Exp $" cvsver=${cvsver##*,v } einfo "Gentoo ${GENTOO_VERS} bootstrap ${cvsver%%Exp*}" exit 0 @@ -141,9 +141,9 @@ cleanup() { mv -f /etc/make.conf.build /etc/make.conf fi if [ ${BOOTSTRAP_STAGE} -le 3 ] ; then - cp -f /var/cache/edb/mtimedb /var/run/boostrap-mtimedb + cp -f /var/cache/edb/mtimedb /var/run/bootstrap-mtimedb else - rm -f /var/run/boostrap-mtimedb + rm -f /var/run/bootstrap-mtimedb fi fi exit $1 |