diff options
author | Ned Ludd <solar@gentoo.org> | 2004-06-18 02:45:41 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-06-18 02:45:41 +0000 |
commit | 4e0fd457e14f5070a891f281c584c33ae76d2710 (patch) | |
tree | 24185e3a3c02a820b1b0508b14c8333daabe118c /scripts | |
parent | Stable on sparc. (Manifest recommit) (diff) | |
download | gentoo-2-4e0fd457e14f5070a891f281c584c33ae76d2710.tar.gz gentoo-2-4e0fd457e14f5070a891f281c584c33ae76d2710.tar.bz2 gentoo-2-4e0fd457e14f5070a891f281c584c33ae76d2710.zip |
update bash syntax bug #50158
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/bootstrap-2.6.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/bootstrap-2.6.sh b/scripts/bootstrap-2.6.sh index ca193557fad1..b1865c77e1bb 100644 --- a/scripts/bootstrap-2.6.sh +++ b/scripts/bootstrap-2.6.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-2.6.sh,v 1.5 2004/06/15 22:08:57 solar Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap-2.6.sh,v 1.6 2004/06/18 02:45:41 solar Exp $ # IMPORTANT NOTE: # This script no longer accepts an optional argument. @@ -119,7 +119,9 @@ then cleanup 1 fi -if ! which portageq &>/dev/null +# bug #50158 +# if ! which portageq &>/dev/null +if which portageq &>/dev/null then # Check if the user have 'nptl' in USE, and if so, check if we # have proper linux headers ... |