summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2005-12-02 15:43:57 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2005-12-02 15:43:57 +0000
commit44ad12cdbbbf9308dd4c633ae8945076acc2f9fb (patch)
tree188fd9f2e76fad98e9a1a588707789cda698ad7f /scripts
parent0.10 Prerelease (diff)
downloadhistorical-44ad12cdbbbf9308dd4c633ae8945076acc2f9fb.tar.gz
historical-44ad12cdbbbf9308dd4c633ae8945076acc2f9fb.tar.bz2
historical-44ad12cdbbbf9308dd4c633ae8945076acc2f9fb.zip
Removed wildcards as they are not necessary. Closing bug #114222.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bootstrap.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh
index 7f1b94513d68..4a0e4be66049 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.77 2005/11/20 03:08:57 solar Exp $
+# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.78 2005/12/02 15:43:57 wolf31o2 Exp $
# people who were here:
# (drobbins, 06 Jun 2003)
@@ -78,7 +78,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.77 2005/11/20 03:08:57 solar Exp $"
+ cvsver="$Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.78 2005/12/02 15:43:57 wolf31o2 Exp $"
cvsver=${cvsver##*,v }
einfo "Gentoo Linux bootstrap ${cvsver%%Exp*}"
exit 0
@@ -176,7 +176,7 @@ export ORIGUSE=$(portageq envvar USE)
# Check for 'build' or 'bootstrap' in USE ...
INVALID_USE=$(gawk -v ORIGUSE="${ORIGUSE}" '
BEGIN {
- if (ORIGUSE ~ /[[:space:]]*(build|bootstrap)[[:space:]]*/)
+ if (ORIGUSE ~ /[[:space:]](build|bootstrap)[[:space:]]/)
print "yes"
}')