diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-08-31 17:14:33 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2007-08-31 17:14:33 +0000 |
commit | 0cf3589ccd0b23827bc95148f9e060b4973dde79 (patch) | |
tree | 3b9483b80817c28fe21fffa5ad161a8b2d101482 /scripts | |
parent | Mask dev-db/metakit (bug #169509). (diff) | |
download | historical-0cf3589ccd0b23827bc95148f9e060b4973dde79.tar.gz historical-0cf3589ccd0b23827bc95148f9e060b4973dde79.tar.bz2 historical-0cf3589ccd0b23827bc95148f9e060b4973dde79.zip |
Added bindist to the list of allowed USE flags for bootstrap. I am unaware of any packages in bootstrap that use this USE flag, but it should be allowed, anyway.
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 8210503073cb..473e0cef92da 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.85 2007/05/14 06:22:21 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.86 2007/08/31 17:14:33 wolf31o2 Exp $ # people who were here: # (drobbins, 06 Jun 2003) @@ -52,7 +52,7 @@ v_echo() { env "$@" } -cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.85 2007/05/14 06:22:21 kumba Exp $" +cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.86 2007/08/31 17:14:33 wolf31o2 Exp $" cvsver=${cvsver##*,v } cvsver=${cvsver%%Exp*} cvsyear=${cvsver#* } @@ -217,6 +217,9 @@ fi # gettext should only be needed when used with nls for opt in ${ORIGUSE} ; do case "${opt}" in + bindist) + ALLOWED_USE="${ALLOWED_USE} bindist" + ;; nls) USE_NLS=1 ALLOWED_USE="${ALLOWED_USE} nls" |