diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-12-02 15:43:57 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2005-12-02 15:43:57 +0000 |
commit | a35caac6a3cf30fc8354b512d8e4fc71321778d0 (patch) | |
tree | d95ec71fed95a3339ac0cbe15045f657b7243118 /scripts | |
parent | 0.10 Prerelease (diff) | |
download | gentoo-2-a35caac6a3cf30fc8354b512d8e4fc71321778d0.tar.gz gentoo-2-a35caac6a3cf30fc8354b512d8e4fc71321778d0.tar.bz2 gentoo-2-a35caac6a3cf30fc8354b512d8e4fc71321778d0.zip |
Removed wildcards as they are not necessary. Closing bug #114222.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 6 |
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" }') |