diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-03-05 04:37:25 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2003-03-05 04:37:25 +0000 |
commit | 4b6dc9a01ac0f548b553bf3e357ce3eda960bb94 (patch) | |
tree | 09d4e50dcd7d016fa5636c52d5903f58529f2eb6 /scripts | |
parent | fixes bug #16733 (diff) | |
download | historical-4b6dc9a01ac0f548b553bf3e357ce3eda960bb94.tar.gz historical-4b6dc9a01ac0f548b553bf3e357ce3eda960bb94.tar.bz2 historical-4b6dc9a01ac0f548b553bf3e357ce3eda960bb94.zip |
added Azarahs stage0 fix
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/bootstrap.sh | 24 |
1 files changed, 13 insertions, 11 deletions
diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 3ba34909a01a..000704bb04c6 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -1,7 +1,7 @@ #!/bin/bash # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 -# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.41 2003/02/27 10:23:57 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/scripts/bootstrap.sh,v 1.42 2003/03/05 04:37:25 bcowan Exp $ # IMPORTANT NOTE: # This script now accepts an optional argument. @@ -42,13 +42,16 @@ then source /etc/profile fi -echo -echo -e "${GOOD}Gentoo Linux${GENTOO_VERS}; \e[34;01mhttp://www.gentoo.org/${NORMAL}" -echo -e " Copyright 2001-2003 Gentoo Technologies, Inc.; Distributed under the GPL" -echo -einfo "Starting Bootstrap of base system ..." -echo -echo +if [ "$!" = "" ] +then + echo + echo -e "${GOOD}Gentoo Linux${GENTOO_VERS}; \e[34;01mhttp://www.gentoo.org/${NORMAL}" + echo -e " Copyright 2001-2003 Gentoo Technologies, Inc.; Distributed under the GPL" + echo + einfo "Starting Bootstrap of base system ..." + echo + echo +fi # This should not be set to get glibc to build properly. See bug #7652. LD_LIBRARY_PATH="" @@ -151,8 +154,7 @@ export AUTOCLEAN="no" # Allow portage to overwrite stuff export CONFIG_PROTECT="-*" - -if [ "$1" = "" ] || [ "$1" = "1.5" ] +if [ "$1" = "" ] || [ "$1" = "0" -o "$1" = "1.5" ] then # # First stage of bootstrap (aka build stage) @@ -184,7 +186,7 @@ then ${GCC_CONFIG} "`${GCC_CONFIG} --get-current-profile`" &> /dev/null fi -if [ "$1" = "" ] || [ "$1" = "2" ] +if [ "$1" = "" ] || [ "$1" = "0" -o "$1" = "2" ] then # # Second stage of boostrap |