summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2007-08-31 17:14:33 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2007-08-31 17:14:33 +0000
commitfa741a0382ad642f1b637d741beae04ae1cbb15a (patch)
treebe29bf268cb87c93bc02a7e47fa9eb78c5cfbb8f /scripts
parentMask dev-db/metakit (bug #169509). (diff)
downloadgentoo-2-fa741a0382ad642f1b637d741beae04ae1cbb15a.tar.gz
gentoo-2-fa741a0382ad642f1b637d741beae04ae1cbb15a.tar.bz2
gentoo-2-fa741a0382ad642f1b637d741beae04ae1cbb15a.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-xscripts/bootstrap.sh7
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"