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 | 93ed1dc803f022f949ac845e95ab11733b199749 (patch) | |
tree | 3d73107429c98665de1e47798a383d98c484a8bc /scripts | |
parent | Version bump. (diff) | |
download | gentoo-2-93ed1dc803f022f949ac845e95ab11733b199749.tar.gz gentoo-2-93ed1dc803f022f949ac845e95ab11733b199749.tar.bz2 gentoo-2-93ed1dc803f022f949ac845e95ab11733b199749.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 |