diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-07-06 21:25:15 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-07-06 21:25:15 +0000 |
commit | 73fa45d8dd889e929073bf1c51beb7485af945a9 (patch) | |
tree | 0f5efb38835b855533974608b58ad556b961cb07 /scripts | |
parent | Take over maintainership, version bump with deps on firefox and seamonkey rat... (diff) | |
download | historical-73fa45d8dd889e929073bf1c51beb7485af945a9.tar.gz historical-73fa45d8dd889e929073bf1c51beb7485af945a9.tar.bz2 historical-73fa45d8dd889e929073bf1c51beb7485af945a9.zip |
Remove deprecation messages by using --clean and --prune. Blame ian.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 49d5c378296a..9a2aaaf17b8a 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.81 2006/03/20 19:22:21 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.82 2006/07/06 21:25:15 wolf31o2 Exp $ # people who were here: # (drobbins, 06 Jun 2003) @@ -47,7 +47,7 @@ v_echo() { env "$@" } -cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.81 2006/03/20 19:22:21 wolf31o2 Exp $" +cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.82 2006/07/06 21:25:15 wolf31o2 Exp $" cvsver=${cvsver##*,v } cvsver=${cvsver%%Exp*} cvsyear=${cvsver#* } @@ -358,8 +358,8 @@ if [[ -n ${STRAP_RUN} ]] ; then if [[ -x ${GCC_CONFIG} ]] && ${GCC_CONFIG} --get-current-profile &>/dev/null then # Make sure we get the old gcc unmerged ... - emerge clean || cleanup 1 - emerge prune sys-devel/gcc || cleanup 1 + emerge --clean || cleanup 1 + emerge --prune sys-devel/gcc || cleanup 1 # Make sure the profile and /lib/cpp and /usr/bin/cc are valid ... ${GCC_CONFIG} "$(${GCC_CONFIG} --get-current-profile)" &>/dev/null fi |