diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-06-22 21:37:17 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-06-22 21:37:17 +0000 |
commit | ffcb52db3809d1a95ecadba6b015faad70f891db (patch) | |
tree | 98b3d2ce3e6851020e53bd3b439978b4a57b6273 /scripts | |
parent | Version bump. (diff) | |
download | historical-ffcb52db3809d1a95ecadba6b015faad70f891db.tar.gz historical-ffcb52db3809d1a95ecadba6b015faad70f891db.tar.bz2 historical-ffcb52db3809d1a95ecadba6b015faad70f891db.zip |
Initial userlocales support in bootstrap.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 73bd895bd215..6edb845823c1 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.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.sh,v 1.74 2005/05/16 04:30:39 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.75 2005/06/22 21:37:17 wolf31o2 Exp $ # people who were here: # (drobbins, 06 Jun 2003) @@ -79,7 +79,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.sh,v 1.74 2005/05/16 04:30:39 vapier Exp $" + cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.75 2005/06/22 21:37:17 wolf31o2 Exp $" cvsver=${cvsver##*,v } einfo "Gentoo ${GENTOO_VERS} bootstrap ${cvsver%%Exp*}" exit 0 @@ -216,6 +216,9 @@ for opt in ${ORIGUSE} ; do multilib) STAGE1_USE="${STAGE1_USE} multilib" ;; + userlocales) + STAGE1_USE="${STAGE1_USE} userlocales" + ;; esac done |